JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: How to read Com port data Archived to Disk
I've never tried to read from com ports, but here's something that may help:
1) See if the MSComm1 control (MS COMM Control 6.0) can work. Never used it, but it may allow you to "listen" to different ports.
[from MSDN for an example]
PortOpen Property Example
The following example opens communications port number 1 at 9600 baud with no parity checking, 8 data bits, and 1 stop bit:
MSComm1.Settings = "9600,n,8,1"
MSComm1.CommPort = 1
MSComm1.PortOpen = True
2) lookup on the internet ways to communicate with a modem, it uses a comm port, so it may be of some use.
|