|
-
Mar 18th, 2000, 06:24 PM
#1
Thread Starter
Junior Member
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.
-
Mar 19th, 2000, 12:45 PM
#2
Lively Member
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...
Regards,
 Paul Rivoli 
---------------------
[email protected]
http://members.dingoblue.net.au/~privoli
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|