Receive sms by GSM modem to show in PC
i now doing a project in send and receive sms by pc. anyone can show me the code in VB6? really urgent... and plus a help... anyone know the coding to print image, graphic or picture from own application program... is an POS printer (black color).. thanks a lot to who can help me!!!! :WAVE:
[291 byte] By [
nigege] at [2007-11-11 8:37:35]

# 1 Re: Receive sms by GSM modem to show in PC
i have the code for send sms, but i dont know how to change the code for receive sms.. plus i also cant find any webside got sample code about it. problem also occur in the POS printer.
nigege at 2007-11-11 17:25:17 >

# 3 Re: Receive sms by GSM modem to show in PC
i post the code for u, but hope others can help me in the part i need help...
here the codes...
MDIForm1.MSComm2.CommPort = 1 'Comm Port
MDIForm1.MSComm2.Settings = "9600,N,8,1" 'Comm Port Setting String
MDIForm1.MSComm2.InputMode = comInputModeText ' Read Text
MDIForm1.MSComm2.InputLen = 0 ' Entire buffer
MDIForm1.MSComm2.PortOpen = True
phoneno = "AT+CMGS=" & Chr(34) & stringhpno & Chr(34) & vbCr
MDIForm1.MSComm2.Output = phoneno
phoneno = strmessage & Chr(26)
MDIForm1.MSComm2.Output = phoneno
yeah... liverpool 3-1
nigege at 2007-11-11 17:27:14 >

# 4 Re: Receive sms by GSM modem to show in PC
can somebody help me, to do the same given above in .net
# 5 Re: Receive sms by GSM modem to show in PC
i now doing a project in send and receive sms by pc. anyone can show me the code in VB6? really urgent... and plus a help... anyone know the coding to print image, graphic or picture from own application program... is an POS printer (black color).. thanks a lot to who can help me!!!!
To send SMS from PC, I used a GSM modem (got it from http://www.mobitek-system.com/Products/GSM_Modem.html), connect it to a PC, use VB6 with SMS API (ActiveX) (http://www.mobitek-system.com/SMS_Gateway/SMS_Gateway.html)
The SMS API can also be used in .Net, refer to http://www.mobitek.com.my/SMS_Gateway/SMS_API_v5/Manual/visualstudionet.html
Hope it helps!
Helper at 2007-11-11 17:29:15 >
