Hello,
is there someone with a lot of experience to this control?
It seems to me, that the function
var =MSComm1.Input
don't work well with more then one byte.
my Application:
init:
MSComm1.OutBufferSize = 256
MSComm1.InputLen = 0
MSComm1.InBufferSize = 256
MSComm1.RThreshold = 0
...
Do
If (MSComm1.InBufferCount = 5) Then
Done = True
End If
Loop While (Done = False)
this works, until here, but then:
txtStatus.SelText = MSComm1.Input
With this command I don't get the 5 bytes out of the queue.
Any idea?