Hello folks! I don't get this at all! I'm using winsock and connecting to another server.... The code below doesn't get me anything My msgbox that says "hi" pops up so I know there routine is being executed, but I don't get anything in text1! Any ideas?

Private Sub AxWinsock1_DataArrival(ByVal sender As Object, ByVal e As AxMSWinsockLib.DMSWinsockControlEvents_DataArrivalEvent) Handles AxWinsock1.DataArrival
Dim text1 As String
MsgBox("hi!")
AxWinsock1.GetData(text1)
MsgBox(text1)
End Sub