Can I open Notepad.exe from C # with the Find option open?

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?

+4
source share
1 answer

It looks like you are trying to automate something ...

Here is an example from CodeProject that will help you do what you are looking for in C #

+1
source

Source: https://habr.com/ru/post/1435337/


All Articles