Link to home
Start Free TrialLog in
Avatar of Bergan2
Bergan2

asked on

Usa VBA to throw a login and password into an input form in html?

I want to open a webpage formated in html using a command button on a form created in Access 2007.  Does anyone know the code for this?
Avatar of Nathan Bove
Nathan Bove
Flag of United States of America image

Private Sub Command0_Click()
Application.FollowHyperlink "http://www.google.com/"
End Sub
Avatar of Richard Daneke
If the location is secure, use "https://www.myrestrictedsite.com" in place of the "www.google.com"   
ASKER CERTIFIED SOLUTION
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bergan2
Bergan2

ASKER

Thanks for your help.