Do you know of any way to give ctrl + f to something by code in a WebBrowser instance?
Do you know of any way to give ctrl + f to something by code in a WebBrowser instance?
The SendKeys class can be used to send key combinations to the foreground application.
To send ctrl + f use:
SendKeys.Send("^f");