I have a simple C# WinForms Crud AP for employees that have to do a lot of simple web lookups. Currently it loads 5 websites and puts a search term into the clipboard. The employee then has to paste the search term into the search textbox on each of the sites and hit enter. Is there a simple way to enter the data for them? The search textbox usually has focus when the sites load, I just cannot find a way to detect when the page has loaded or how to send the data to the window.
It looks, from these helpful answers, like I was going about this the wrong way. I was using code found with the help of my good friend, Mr. Google
System.Diagnostics.Process.Start("www.website.com");
Clipboard.SetText(textBox1.Text, TextDataFormat.Text);
I will do some more research this week on the webbrowser control