Open internet explorer window from VBA..

electro

Registered User.
Local time
Today, 22:52
Joined
Sep 8, 2006
Messages
27
I have tried many times to open a webpage in internet explorer with some code but nothing ever happens. The code seems to be correct so there should not be any problems.
Code:
Shell "c:\program files\internet explorer\iexplore.exe " & Me.Websida, vbMaximizedFocus
Where do I think wrong?
 
Don't use the Shell, you should be able to just use

FollowHyperlink "http://YourURLHere"
 

Users who are viewing this thread

Back
Top Bottom