dw
Tue Jul 20 07:03:47 CDT 2004
Thank you, McKirahan, Brian, and Frank for the invaluable information. Very
useful. Thanks :-)
"Frank" <Frank@discussions.microsoft.com> wrote in message
news:33D6310A-8E53-409D-905A-96618FE1D156@microsoft.com...
> David,
>
> 1. Create a vb executable project.
> 2. Browse on menu Project/references
> 3. Check "Microsoft internet Controls"
> 4. Add this control to your form and get a name like "ctlINet"
> 5. On sub Form_Load
> Dim strUrl As String
> Dim urlData
> ctlINet.Protocol = icHTTP
> strUrl = "
http://.../xxx.asp" 'Address of your asp page
> urlData = ctlINet.OpenURL(strUrl)
> 6. Compile it and generate an exe file like mySchedule.exe
> 7. Setup schdule mySchedule.exe in Command (DOS) as you want.
>
> Hope it is help.
>
> Frank
>
> "dw" wrote:
>
> > Hello, all. We need to schedule an ASP page to run hourly/daily, which
> > generates a static HTML (*.htm) page. Is this possible with VBS? If so,
are
> > there any examples out there? Thank you much.
> >
> >
> >