I created a Window Form C # application that opens Notepad.exe using the command:
System.Diagnostics.Process.Start("notepad.exe", w_file);
But I want to open Notepad using the "Change-Find" option and put some value in the "Find" field.
Is it possible?
source share