Hi to all,
I have this vb6 code
MSComm1.Output = "AT+CMGD=1,4" & vbCrLf
and the above is converted to:
astream.write "AT+CMGD=1,4" & CrLf
The string must be terminated with CrLf
Note the goal is to send a string to the serial port, regardless of the contents of the string.. so don't worry about the AT
command.. This is a simple string sent to the port, not AT code.
Thanks in advance.
I have this vb6 code
MSComm1.Output = "AT+CMGD=1,4" & vbCrLf
and the above is converted to:
astream.write "AT+CMGD=1,4" & CrLf
The string must be terminated with CrLf
Note the goal is to send a string to the serial port, regardless of the contents of the string.. so don't worry about the AT
command.. This is a simple string sent to the port, not AT code.
Thanks in advance.