I need to develop a Windows application in C# or VB.net, that when pressing a button, opens Internet Explorer to a specific URL, and invokes the search text function - as in, pressing the CRTL+F in keyboard and filling in specific text in the search textbox.
Currently I can open the page in IE using process.start("iexplorer.exe","URL");
, but I don't know how to invoke the CRTL+F command after opening the page.
Appreciate your help