Giving ctrl + f in webbrowser by code

1

Do you know of any way to give ctrl + f to something by code in a WebBrowser instance?

    
asked by anonymous 28.07.2016 / 19:50

1 answer

0

The SendKeys class can be used to send key combinations to the foreground application.

To send ctrl + f use:

SendKeys.Send("^f");
    
28.07.2016 / 20:24