I have created a notepad in c#.
Now i want to open a text file in my notepad. but i dont know how to do that, can anybody help me?
Now i want to open a text file in my notepad. but i dont know how to do that, can anybody help me?
Process p = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo("notepad.exe", theFileName);
p.StartInfo = startInfo;
p.Start();
Comment