I try to lunch an executable file within my windows form vb.net application, but the first screen lunched were maximized..i want to be as it is, in minimized state..
my code is:
Dim oProcess As System.Diagnostics.Process
Dim oPSI As New System.Diagnostics.ProcessStartInfo
oPSI.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized
oPSI.FileName = "path\application.exe"
oPSI.Arguments = ""
oProcess = Process.Start(oPSI)