Moin erst mal!
Habe Delphi7 und TComPort4.
Möchte nun den ComPort auslesen und die 5Byte die ich bekomme im Array schreiben.
Nun habe ich dies schon mal:
Delphi-Quellcode:
procedure TForm1.ComPort1RxChar(Sender: TObject; Count: Integer);
var
befehl : array [0..5] of integer;
begin
ComPort1.Read(befehl,6);
Label12.Caption:=IntToStr(befehl[0]);
Label13.Caption:=IntToStr(befehl[1]);
Label14.Caption:=IntToStr(befehl[2]);
Label15.Caption:=IntToStr(befehl[3]);
Label16.Caption:=IntToStr(befehl[4]);
end;
nur so bekomme ich nichts richtiges raus
wo ist mein Fehler!