PDA

Click to See Complete Forum and Search --> : TCP/IP (Sending/Recieving Data Strings)


Ovid
Mar 18th, 2000, 05:24 PM
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.

privoli
Mar 19th, 2000, 11:45 AM
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,pippen@myisp.com"
'send the real data so that the server knows what data it's expecting...