Hallo, die Idee hatte ich auch schon allerdings stehen dort nur 2 Geraete:
Druckeranschluss (LPT1) und Kommunikationsanschluss (Com1). Keiner der beiden verschwindet sobald ich das Kabel entferne.
Die Vermutung das Com3 der virtuelle Port ist liegt wohl nahe aber kann ich da sicher sein?
Jemand meinte das es sich dabei nur um einen Modemanschluß handelt.
Außerdem muesste ich doch eine Antwort erhalten, sobald ich etwas schicke oder?
Meine Empfangs Funktion sieht so aus:
Delphi-Quellcode:
procedure TForm1.readbufClick(Sender: TObject);
VAR
anzahl : integer;
buf : string;
BEGIN
anzahl := 100;
SetLength(buf, Anzahl);
If anzahl > 0 then
begin
FileRead(ComHandle, buf, anzahl);
form1.Antwort.Caption:='"'+buf+'"';
form1.antwort.Update;
end
else
form1.Antwort.Caption:='fehlgeschlagen';
END;
Vielleicht liegt da der Fehler??
Ich versuche es nochmal mit com3.
MfG HorstBS