Help with Xbee and USB board

I’m planning to buy two Xbee modules and a USB board (I saw one by droids.it, don’t know if there are made by digi.com too)

The question is: how to communicate with the usb board and then with the xbee?

Is is possible to communicate via C++ programs with the usb linked board?

Please help me I am very confused

Hopefully the droids.it USB board comes with a USB driver. This driver would likely work similar to the one we use with our XBIB-U-DEV USB development board.

What the driver does is create a USB serial port, through which your C++ program would then communicate serially to the USB board with XBee loaded on it.

If you are interested in buying a Digi XBIB-U-DEV USB development board, you can find the part number here:
http://www.digi.com/products/model.jsp?lid=EN&pgid=130&pfid=147&mtid=2588&amtid=2588&pm=Y

This page contains the schematic of the board:
http://www.digi.com/support/productdetl.jsp?pid=3352&osvid=0&s=316&tp=3&tp2=0

Yes, the USB linked board creates a COM port on your PC. From there, you can create any application that you want to talk to that adapter by going through the serial port it has been assigned to by the OS (after installing the drivers). From here, everything else is standard RS232 programming, depending on whether or not the radios have AT or API firmware flashed in them. I hope this helps!