Found a perfect solution for SMS through VB
Found an Solution which allows u to send SMS through VB. No net connection
required. It uses your mobile device which should support infrred communication.
Lets exchange ideas
[183 byte] By [
rahul] at [2007-11-9 15:34:24]

# 1 Re: Found a perfect solution for SMS through VB
"rahul" <mercz3@rediffmail.com> wrote:
>
>Found an Solution which allows u to send SMS through VB. No net connection
>required. It uses your mobile device which should support infrred communication.
>Lets exchange ideas
manish at 2007-11-12 0:16:02 >

# 2 Re: Found a perfect solution for SMS through VB
"rahul i think ,vb com component added in ur tools.
Public Sub send_SMS()
Dim message As String
Dim i
Dim k
MSComm1.CommPort = CInt(comPort)'value is 1
If Not MSComm1.PortOpen = True Then
MSComm1.PortOpen = True
End If
For i = 0 To 3
If Not StrComp(HPalert(i), "NoNumber", vbTextCompare)=0 'handphone
nos in HPalert(i)
message = "AT+CMGS=" + HPalert(i) + Chr(13)
'message = "AT+CMGS=97805342" + Chr(13)
MSComm1.Output = message
message = ""
For k = 0 To 2
If k = 0 Then
message = message + MSComm1.Input
If Not InStr(1, message, ">", 1) = 0 Then
k = 3
End If
End If
Next k
MSComm1.PortOpen = False
End Sub
anu at 2007-11-12 0:17:13 >

# 3 Re: Found a perfect solution for SMS through VB
"rahul" <mercz3@rediffmail.com> wrote:
>
>Found an Solution which allows u to send SMS through VB. No net connection
>required. It uses your mobile device which should support infrred communication.
>Lets exchange ideas
# 4 Re: Found a perfect solution for SMS through VB
"rahul" <mercz3@rediffmail.com> wrote:
>
>Found an Solution which allows u to send SMS through VB. No net connection
>required. It uses your mobile device which should support infrred communication.
>Lets exchange ideas
Dev at 2007-11-12 0:19:08 >

# 5 Re: Found a perfect solution for SMS through VB
"Dev" <dev_pr@rediffmail.com> wrote:
>
>"rahul" <mercz3@rediffmail.com> wrote:
>>
>>Found an Solution which allows u to send SMS through VB. No net connection
>>required. It uses your mobile device which should support infrred communication.
>>Lets exchange ideas
I have Ericsson FCT (Fixed cellular Terminal) which trough modem can be interfaced
to PC through COM port.Is it possible to user your software for sending and
receiving SMS using PC.
>
Ashok at 2007-11-12 0:20:07 >

# 6 Re: Found a perfect solution for SMS through VB
"clicker" <hoangtuhero@yahoo.com> wrote:
>
>"rahul" <mercz3@rediffmail.com> wrote:
>>
>>Found an Solution which allows u to send SMS through VB. No net connection
>>required. It uses your mobile device which should support infrred communication.
>>Lets exchange ideas
>
I have Ericsson FCT (fixed cellular Terminal) it has in built modem so can
be interfaced through com port. Please confirm if your software can be used
with this.
Ashok at 2007-11-12 0:21:10 >

# 7 Re: Found a perfect solution for SMS through VB
"manish" <manban99@hotmail.com> wrote:
>
>"rahul" <mercz3@rediffmail.com> wrote:
>>
>>Found an Solution which allows u to send SMS through VB. No net connection
>>required. It uses your mobile device which should support infrred communication.
>>Lets exchange ideas
>