Link to home
Start Free TrialLog in
Avatar of stoneycurtis
stoneycurtis

asked on

Send URL string from Access

Hello,
I want to send a URL string from my Access application, the string looks like this:
https://www.bulletinmessenger.net/api/1/sms/out?userId=18135551234&password=Sr8oigJLaVC0BL3CCeJxLaPQMTY%3D&to=18135551234&body=hellothere
Obviously this is a call to an SMS gateway, my application builds the string from variables.
I'd like to send it from the 'Click' event of a button, what method would you suggest I use?
Could you provide an example?
Thanks in advance for your help
Paul
Avatar of csmart2301
csmart2301

To internetExplorer?
Application.FollowHyperlink mylink

or
 
Application.FollowHyperlink "http://www.google.com/"

 
Good luck
clint
 
ASKER CERTIFIED SOLUTION
Avatar of csmart2301
csmart2301

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Richard Daneke
private sub button1_click()
Dim mystring as Variant
mystring = "https://www.bulletinmessenger.net/api/1/sms/out?userId=18135551234&password=Sr8oigJLaVC0BL3CCeJxLaPQMTY%3D&to=18135551234&body=hellothere"
Application.FollowHyperlink myString
mystring = nothing
end sub