Oct 14, 2003 #1 aryajur Programmer Joined Jul 2, 2003 Messages 45 Location US Hello, Can anybody tell me how can I access a serial port ot communicate to another port in VC++?
Oct 14, 2003 #2 CMR Programmer Joined Apr 30, 2002 Messages 76 Location AU You can use ::CreateFile() to open the port and ::ReadFile() and ::WriteFile() to read from/write to the buffer. There should be some examples on the MSDN somewhere... CMR Upvote 0 Downvote
You can use ::CreateFile() to open the port and ::ReadFile() and ::WriteFile() to read from/write to the buffer. There should be some examples on the MSDN somewhere... CMR