![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
We have a software application that if you access a URL that inlcudes a filename and a list of phone numbers, it will call each of the phone numbers and play the pre-recorded message contained in the filename. I think I can generate the URL string fairly easy, but how do I essentially open a web browser and pass it the URL? Thanks, Doug |
#3
| |||
| |||
|
|
Try this: '************************************************* *********************** ' Visual Basic ActiveX Script '************************************************* *********************** Option Explicit Function Main() Dim mInternet, WebAddress WebAddress = "http://myaddress.com?variables" mInternet.open "GET" , WebAddress, false mInternet.send mFiletxt= mInternet.Responsetext set mInternet = nothing Main = DTSTaskExecResult_Success End Function "Leighton.d" wrote: We have a software application that if you access a URL that inlcudes a filename and a list of phone numbers, it will call each of the phone numbers and play the pre-recorded message contained in the filename. I think I can generate the URL string fairly easy, but how do I essentially open a web browser and pass it the URL? Thanks, Doug |
![]() |
| Thread Tools | |
| Display Modes | |
| |