2020年8月15日 星期六

vb.net 開啟程序 [Start Process]

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
        Dim cmdProcessC As New Process

        With cmdProcessC
            With .StartInfo
                .FileName = "4A505A635C676A.exe"
                .Arguments = "-lLong-Ay -n " & strPath & "\ " & strFileISO
                .CreateNoWindow = True
                .UseShellExecute = False
            End With
            .Start()
            .WaitForExit()
        End With

沒有留言:

張貼留言