I'm trying to get the input of a 3g modem when it receives sms.
This is the code I'm using to trap any incoming sms.
PrivateSub MSComm1_OnComm()
SelectCase MSComm1.CommEvent
Case comEvReceive
DoWhile MSComm1.InBufferCount >0
strInput = strInput & MSComm1.Input...