Hi,
Can someone assist me to locate
a Serial Comms Package for the old
Delphi V5,6,7 (early 2000's) ?
I wish to do basic comms IO routines.
I used to have a package called CPort(V.3?), but
my pc crashed and I was unable to obtain it again.
Maybe there are other working shareware Comms
Packages available? I appreciate your input?
Regards,
Gerhard
gerhardjl 0 Newbie Poster
Recommended Answers
Jump to PostOr you can do it yourself...
Var ComFile: THandle; function TCServer.OpenDeviceSerial: Boolean; Const RxBufferSize = 32768; TxBufferSize = 32768; Var DeviceName: Array[0..80] of Char; DCB: TDCB; Config : String; CommTimeouts : TCommTimeouts; begin Result := True; StrPCopy(DeviceName, ZSerialPort + ':'); ComFile := CreateFile(DeviceName, GENERIC_READ or GENERIC_WRITE, 0, …
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.