Command line syntax in macro to open specific web page

dzirkelb

Registered User.
Local time
Today, 16:47
Joined
Jan 14, 2005
Messages
180
This is what the command is in Access 97 that works:

"C:\Program Files\Internet Explorer\IEXPLORE.EXE""http://10.3.1.18/"

It opens an internal web page to our company.

The same code in Access 2007 just brings up IE to the home page, how do I get it to open in a specific web page? It must be embedded in a macro is the only criteria.
 
Hello,
Create a Function something like..
Code:
Function openWeb()
    FollowHyperlink "http://www.google.co.uk"
End Function
and call this function from the Macro..
 
worked perfectly, thanks
 

Users who are viewing this thread

Back
Top Bottom