- 689 名前:デフォルトの名無しさん mailto:sage [2007/02/15(木) 17:15:14 ]
- Dim mProcess As New Process()
mProcess.StartInfo.FileName = "notepad.exe" mProcess.StartInfo.UseShellExecute = True mProcess.StartInfo.WindowStyle = ProcessWindowStyle.Minimized mProcess.Start() なら最小化されるのに、 mProcess.StartInfo.UseShellExecute = False だと、なぜか最小化されません。そういうものなのでしょうか? mProcess.StartInfo.UseShellExecute = True で、最小化で起こすことはできないのでしょうか?
|

|