I have a specific page that I want to go to within my website that I want to
activate from an Access commandbar, menubar. The below works just fine.
Dim ie As InternetExplorer
Set ie = New InternetExplorer
ie.Visible = True
ie.Navigate ("www.mywebsite.com")
But when I want to have IE to go to a specific page on my website site, it
does not work.
ie.Navigate("www.mywebsite.com/aboutus.aspx") or
ie.Navigate("www.mywebsite.com/aboutus") don't work.
TIA
Warmy
Joerg Ackermann - 14 Jan 2007 22:10 GMT
Hallo,
> I have a specific page that I want to go to within my website that I
> want to activate from an Access commandbar, menubar. The below works
[quoted text clipped - 9 lines]
> ie.Navigate("www.mywebsite.com/aboutus.aspx") or
> ie.Navigate("www.mywebsite.com/aboutus") don't work.
Should work.
Try it with http://... and without ()
Joerg
Warmy - 15 Jan 2007 01:28 GMT
Nope still does not work. I even copy it from the address line when I
manually go into my web site. No go on that either.
> Hallo,
>
[quoted text clipped - 16 lines]
>
> Joerg
Joerg Ackermann - 15 Jan 2007 08:28 GMT
Hallo,
> Nope still does not work. I even copy it from the address line when I
> manually go into my web site. No go on that either.
What happens when you use
Application.FollowHyperlink "URL"
Joerg