I created a Window form C# application which opens a Notepad.exe using command:
System.Diagnostics.Process.Start("notepad.exe", w_file);
But I want to open the Notepad with option "Edit-Find" and put some value into the "Find" field.
Is it possible?