Hey everybody,

just got a question if anyone noticed similar problem to mine..

im using qt 4.5 with qexserialport 1.2 alpha

got a device connected to USB Serial Port (FTDI)

I noticed that it actually cant detect it...
Qt Code:
  1. QextSerialEnumerator enumer;
  2. QList<QextPortInfo>ports = enumer.getPorts();
  3. QStringList strlist;
  4. strlist.clear();
  5. for( int i = 0; i < ports.count(); ++i) strlist << ports.at(i).portName;
  6. ui.comboBox_Comm->addItems(strlist);
To copy to clipboard, switch view to plain text mode 

In fact i have got the info from real comm-port, but can't get the info from virtual comm-port

thanks!
Jim