IE button

Spiet

New member
Local time
Today, 20:31
Joined
Apr 2, 2004
Messages
5
Does anybody know how it is possible to have a button on a form that opens Internet Explorer with the URL. I know how to make the textbox a hyperlink but i want it to be just text and a seperate button that opens the URL entered in the textbox.

Please help me out!

Thanks,

Pieter
 
on_Click of the button..

strInput = me.textbox
Application.FollowHyperlink strInput, , True
 
Treason said:
on_Click of the button..

strInput = me.textbox
Application.FollowHyperlink strInput, , True

Thank you!
 

Users who are viewing this thread

Back
Top Bottom