Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can PB send SMS ?

Status
Not open for further replies.

dex888

Programmer
Aug 13, 2005
7
0
0
MY
Hi,

Can PB develope a system with SMS function?

Thank you very much?
 
Yes, you just need to attach to the proper API libraries. I do not know what they are, but they should be somewhat similar to MAPI and TAPI.
 
You can send SMS through, HTTPPOST.

See below Code

xmlhttp = create oleobject
result = xmlhttp.ConnectToNewObject("MSXML2.ServerXMLHTTP")
xmlhttp.Open("POST", " False)
xmlhttp.setRequestHeader("Content-Type", "application/x-xmlhttp.send("user=" + strUserName + "&password=" + strPassword + "&smsto=" + strSmsTo + "&smsfrom=" + strSMSFrom + "&smsmsg=" + strSmsMsg)

sResponse = xmlhttp.responseText
 
Is there a way of sending pages from PB 10??
- A0C61ZZ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top