You need to put some code into the Winsock2.DataArrival event to put the received string into Text1
VB Code:
  1. Private Sub Winsock2_DataArrival(ByVal bytesTotal As Long)
  2. Dim strData As String
  3. Winsock2.GetData strData
  4. Debug.Print strData
  5. Text1 = strData
  6.  
  7. End Sub