In a very basic TCP/IP messenger, is it possible to send more that one data string at a time, or how can I send one at a time but have the server recognize what variable is being sent. Thank you all for your eager help.
Printable View
In a very basic TCP/IP messenger, is it possible to send more that one data string at a time, or how can I send one at a time but have the server recognize what variable is being sent. Thank you all for your eager help.
You need to either create your own set of protocols to send various bits of data or send data using a tagged var method...
Something like this...
sckOutBound.SendData "3,Username,Password,EmailAddres"
'send a definition of the incoming data...
DoEvents
SckOutBound.SendData "pippen,mypassword,[email protected]"
'send the real data so that the server knows what data it's expecting...