Horst pc:
Spoiler anzeigen
[autoit]
HotKeySet("!x","_exit")
Func _exit()
Exit
EndFunc
TCPStartup()
$Socket=TCPListen("127.0.0.1",33333)
TCPAccept($Socket)
While 1
$x=TCPRecv($Socket,100)
If $x ="jo" then MsgBox(0,"","")
WEnd
pc vom client
Spoiler anzeigen
[autoit]
TCPStartup()
$y=TCPConnect("127.0.0.1",33333)
If $y=-1 then
MsgBox(0,"",@error)
Exit
EndIf
While 1
$x=InputBox("Befehle","Was soll gemacht werden?")
TCPSend($y,$x)
WEnd
Es wird vom Server keine msgbox zurückgegeben was ist falsch...?