go to website on click

  • Thread starter Thread starter mj
  • Start date Start date
M

mj

Hi. Wondering if anyone knows how to execute some vb that
will send a user to a webpage using a button's onclick
event. Any suggestions would be fantastic. Thanks!!
 
mj said:
Hi. Wondering if anyone knows how to execute some vb that
will send a user to a webpage using a button's onclick
event. Any suggestions would be fantastic. Thanks!!

You could set the button's HyperlinkAddress property, or call the
Application.FollowHyperlink method in the button's Click event
procedure.
 
Back
Top