How do i set the flow control of the MSComm control to hardware?
Printable View
How do i set the flow control of the MSComm control to hardware?
What type of Hardware handshaking are you using?
The following lines of code explain each different type of handshaking in VB6.
Assumming that MSCOMM32.OCX is called MSComm1
MSComm1.Handshaking = 0 ' Default No Handshaking'[/COLOR]
MSComm1.Handshaking = 1 ' XON/XOFF Handshaking'
MSComm1.Handshaking = 2 ' RTS/CTS (Request To Send/Clear To Send)'
MSComm1.Handshaking = 3 ' RTS & XOnXOff Handshaking'
Good luck.