|
Question : send sms from vb to mobile phone??
|
|
I'm a malaysian. can anyone please tell me how to send sms from vb to a mobile phone?? i need to know steps from the beginning to the end . including what hardware and software i need to use. Remember, what i need is step by step. thanx!!
|
Answer : send sms from vb to mobile phone??
|
|
u can try email to sms service provided by maxis or celcom in msia.
all u need is add microsoft mapi control to ur pgm. add the 2 icons. add 4 text label. type email add with [email protected] or [email protected] then send the email. email will be redirect to become sms by maxis. add these code to ur pgm
Private Sub adress_Click()
End Sub
Private Sub bConfirmSend_Click()
With MAPIMessages1 .MsgIndex = -1 .RecipAddress = txtaddr.Text 'name of recipent .RecipDisplayName = txtSendTo.Text 'email address of recipent .MsgSubject = txtSubject.Text .MsgNoteText = txtMessage.Text .SessionID = MAPISession1.SessionID .Send End With MsgBox "Message sent!", , "Send Message" End Sub
Private Sub Form_Load() MAPISession1.SignOn End Sub
Private Sub Form_Unload(Cancel As Integer) MAPISession1.SignOff End Sub
hope this will help u
|
|
|