iamblackhat
Registered Member
- Feb 6, 2008
- 74
- 11
I want to create a simple application that opens a browser and click on a link. I'm interested in doing this in C#. Is this possible to do?
If so, how is it done.
If so, how is it done.
http://msdn.microsoft.com/en-us/library/ms379558(VS.80).aspx
Process note = Process.Start("notepad.exe");
note.CloseMainWindow();
note.Waitforexit();
note.Close();
Dunno if this is the correct syntax but its something similar.