Flash.exeではなくmyfile.flaが閉じるまで監視したい.つまり、Flash.exeでは
なく
myfile.flaが閉じるまで待ちたい.
つまり、Flash.exe
ではなくmyfile.fla
のイベントをキャッチするにはどうすればよいですか?
' Open the notepad application
info.FileName = "Flash.exe"
' Pass a text file name so that notepad will open it
info.Arguments = "c:\MyFile.fla"
process.StartInfo = info
' Start the process (notepad)
process.Start()