我尝试在我的Windows窗体vb.net应用程序中午餐一个可执行文件,但第一个屏幕是最大化 ..我希望在最小化的状态下保持原样..
我的代码是:
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)
答案 0 :(得分:1)
[{
"student": [{
"name": "john",
"lastName": "fox",
"middleName": "yonson"
},{
"age": 26,
"gender": "male"
},{
"passport": "qpuid5423",
"inn": 123542
}]
},{
"student": [{
"name": "peter",
"lastName": "powell",
"middleName": "rivierra"
},{
"age": 26,
"gender": "male"
},{
"passport": "qpuid5423",
"inn": 123542
}]
}]
删除此行
答案 1 :(得分:-1)
我从终端启动你的应用程序我工作吗? 如果是,你可以使用
System.Console.Write()
在终端中,但从您的程序中执行此操作。 我想你可以告诉终端以最小化的方式打开它:
System.Console.WriteLine("start /min apli.exe")
祝你好运!