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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending Text with TCP/IP

Status
Not open for further replies.

Gandalph067

Programmer
Nov 28, 2012
9
US
Good Day,

I am currently sending a message to a paging system through IE.Navigate process, this causes the IE window to pop up and return the Acknoledge message to the screen. During some discussion I was advised this can be accomplished through straight TCP with the IP open Port 80? this would return the message to me so I can log this is the database. I would appreciate any Ideas, and thank you in advance.


Dim ie As Object, strMessage As String, intPager as Integer
Set ie = CreateObject("InternetExplorer.Application")

strMessage = Forms!frmSend!txtMessage
ie.navigate " & intPager & "&type=2&msg=" & strMessage & "&baud=1&beep=1"


Do While ie.Busy And Not ie.ReadyState = 4
DoEvents
Loop

ie.Visible = True

ie.Quit

MS Access 2007
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top