4

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?

maerics
  • 151,642
  • 46
  • 269
  • 291
Zalek Bloom
  • 551
  • 6
  • 13

1 Answers1

1

Looks like you are trying to automate something...

Here is a sample from CodeProject which will help you to do what you are looking for in C#

Sarath
  • 2,719
  • 1
  • 31
  • 39