In the CWSerial control, there is a test tab.
There are three buttons on the tab, execute (writes and then reads) write,
and read
When I issue a command in the test tab, (\00, sends chr 0x00h) and then hit
execute,
the correct byte array is displayed in the box below.
When I execute code
...
CWSerial1.Configure
data = chr$(00)
CWSerial1.write data
inputdata = CWSerial1.read
....
I get error 30304 IO in progress error.
1. Why am i getting this error?
2. Is there example VB code that contains the same sequence as the test tab
on the control?
TIA
Steven Stiller