I use a webbrowser and I want to create a search tool within the page itself.
I use the following code but it doesn't work.
Private Sub Command1_Click()
searchstr = Text1.Text
WebBrowser1.ExecWB OLECMDID_FIND, OLECMDEXECOPT_PROMPTUSER, searchstr
End Sub
The text to be search is to be instered in the Text1.Text and then I click on
Command1.
What must I do to correct this?
Archived from group: microsoft>public>vb>syntax