Open Web page with MS Access macro

  • Thread starter Thread starter JA
  • Start date Start date
JA said:
My web page with the hyperlink
http://sbtp00220New/mysampleapp/mymail_Hadeed_02.aspx
fires notifications to users.
How can I use MS Access macros to open the page? The idea
is that I will be able to use the Windows Scheduler to
then send the notifications at a specific time. Please
help.

I'm not sure exactly what you need to do, but you can have Access tell
Windows to open the link in your default web browser by executing the
statement

Application.FollowHyperlink _
" http://sbtp00220New/mysampleapp/mymail_Hadeed_02.aspx"

You could also use various methods to open the URL in code without ever
opening a browser window, but that's much more complicated.
 
Back
Top