I'm using winsock to send commands over a network using this code
VB Code:
Winsock.SendData "(LD" & 1 & ")" & modConnection.DefaultAudioDrive & ":\" & rsAudio.Fields("filename").Value Winsock.SendData "(FL" & 1 & ")" & rsAudio.Fields("id").Value
I want it to be two seperate strings, but on the server end it receives it as one.
i should look like this
(LD1)J:\123.mp3
(FL1)12
it's coming through like this
(LD1)J:\123.mp3(FL1)12
what can i do to fix this problem
