I am trying to communicate with an infra red receiver, an IRMan on a
com port with MSComm. I can activate and communicate with it but can't
seem to get the OnComm event to trigger when the IRMan receives a
remote signal - I have to manually collect it using MScomm1.Input in a
timer. I have set RThreshold = 4. The following....
Private Sub MSComm_OnComm ()
If MSComm1.CommEvent = comEvReceive then
buffer = MSComm1.Input
end if
end
....doesn't seem to work
Any ideas?
Babber