Hey,
I need help sending a string with winsock and have winsock recieve the string as a string.
Example:
Public Sub Hello()
dim hello as string
hello = "HI!"
winsock1.senddata (hello)
End Sub

But when winsock1 receives this, it receives "HI!"
How do I make it so it recieves the string hello with the contents still inside the string?
Thanks,
CrazyMonkey