Question Process.Start() specify programs window size

vodkasoda

Member
Joined
Jun 16, 2011
Messages
15
Programming Experience
10+
From a VB.net program I am opening a .txt file ...

VB.NET:
Process.Start("Notepad.exe", myTables)

is there anyway of specifying the window size of the .txt file's window from my VB.net code ?!?

It's not going to be a show-stopper if I can't do it, but it would be nice to be able to ...
 
The example would be a little bit better if it checked the return value:
If p.WaitForInputIdle(500) Then SetWindowPos ...
 
Back
Top