View Single Post
  #3 (permalink)  
Old 11-06-2007, 11:38 AM
lu_ozzie lu_ozzie is offline
Newbie
 
Join Date: Nov 2007
Posts: 3
Default

Ok, that's what i did... and it connects properly...
My biggest problem was the dialogue with the tother computer after connecting..
That's what i did:
Code:
Sub Connect(IP)
	'ErrorLabel(errConnect)
	WaitCursor(true)
	TextBox2.Text = "Connecting to " & IP
	Dim client
	client.New1
	client.Connect(IP,23)
	stream.New1(client.GetStream,true)
	TextBox2.Text = "Connection established."
	Return
End Sub
I'm trying to read something from the server...I need to write sentences and read replies... Thanks for the quick answer!
Reply With Quote