M
macXsoft
Hello everybody,
I am trying (with great failure) to create a clickable button that launches
Internet Explorer and goes to the url specified.
The button is called "cmdLookup" and has in the "on click" command the
following:
---------------------------------------------------------
Private Sub cmdLookup_Click ()
Dim objBrowser As New Hyperlink
With objBrowser
.Address = "http://www.localser.com/index.html"
.Follow
End With
End Sub
----------------------------------------------------------
I know this is wrong... Can anyone help me get it right?
Sincerely,
macXsoft
I am trying (with great failure) to create a clickable button that launches
Internet Explorer and goes to the url specified.
The button is called "cmdLookup" and has in the "on click" command the
following:
---------------------------------------------------------
Private Sub cmdLookup_Click ()
Dim objBrowser As New Hyperlink
With objBrowser
.Address = "http://www.localser.com/index.html"
.Follow
End With
End Sub
----------------------------------------------------------
I know this is wrong... Can anyone help me get it right?
Sincerely,
macXsoft