I am using VBScript from an ActiveX compliant software. When the user clicks on a button I want an help.html page to load to let them know how to use the button they clicked. How do I do this??? I have the following snippit but am lost from here.
Sub BringUpInternetExplorer
Dim objIE
Set objIE = CreateObject "InternetExplorer.Application"
objIE.Visible = TRUE
' objIE.Navigate " objIE.Navigate "c:/tmp/help.html"
Set objIE = Nothing
'onbutton_click open help.html
End Sub
Thanks
Kim
Sub BringUpInternetExplorer
Dim objIE
Set objIE = CreateObject "InternetExplorer.Application"
objIE.Visible = TRUE
' objIE.Navigate " objIE.Navigate "c:/tmp/help.html"
Set objIE = Nothing
'onbutton_click open help.html
End Sub
Thanks
Kim