I'm using winsock to send commands over a network using this code

VB Code:
  1. Winsock.SendData "(LD" & 1 & ")" & modConnection.DefaultAudioDrive & ":\" & rsAudio.Fields("filename").Value
  2.        
  3.         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