-
I have a little communication interface between two computers through WinSock. But sometimes I recieve "? " instead of a specific char. I remember in MSComm control I set "?" as a character for "unrecognized" - have WinSock something like this?
How can I get rid of this silly question mark, or at least minimize its occurence?
-
I only know of this happening if you don't use a string with GetData...in which case if you do:
Code:
Dim i As Integer
Winsock1.GetData i
you will get alot of ???s. Perhaps it is something along the same line.
Sunny