Nerd-Man
Jan 18th, 2007, 07:57 AM
i have to send a long chunk of data by winsock but the probelm is how can i do that in 2 line. example..
Winsock1SendData "GET http://www.domian.com/themessagelinkhere/editpage.sendorsubmit HTTP/1.1" & vbCrLf
so i want to send the data in 2 seperate lines like below
Winsock1SendData ("GET http://www.domian.com/themessagelinkhere/), _
(editpage.sendorsubmit HTTP/1.1") & vbCrLf & vbCrLf
but i forgot how to use _ in vb or winsock so i can send the correct data to the server..
Winsock1SendData "GET http://www.domian.com/themessagelinkhere/editpage.sendorsubmit HTTP/1.1" & vbCrLf
so i want to send the data in 2 seperate lines like below
Winsock1SendData ("GET http://www.domian.com/themessagelinkhere/), _
(editpage.sendorsubmit HTTP/1.1") & vbCrLf & vbCrLf
but i forgot how to use _ in vb or winsock so i can send the correct data to the server..