Hallo, ich hole erst das ReadWord ab, da sitzt mein Längen byte,
danach die Byte´s
Delphi-Quellcode:
//******************************************************************************
function RcvByte : Byte;
begin
Result := Form1.TCPClient.IOHandler.ReadByte;
end;
//******************************************************************************
function RcvWord : word;
begin
Result := Form1.TCPClient.IOHandler.ReadWord( FALSE );
end;
mfg Schuby