This is a program in vb.net, but I’m planning to use an outside process by using system.diagnostics.process.start(“C:\Otherprogram.exe”)
Now what I want to do is to resize the default size of window of outside process, can I do that?So that only the things that will be needed by the user can be seen?
This is a program in vb.net, but I’m planning to use an outside process
Share
You can choose to start the process with a minimized, maximized or normal window (by setting the ProcessStartInfo.WindowStyle and using the Process.Start(ProcessStartInfo) method). However, you don’t really have control over the size of the window of the outside process when you start it.