googleandy 發表於 16-11-7 17:10

請教 VB 問題

如圖, 我們可用 System.Diagnostics.Process.Start 去打開外部的 exe檔 (計算器)




也可以用 Shell函式 去打開外部的 exe檔(計算器)

請教一下, 如果, 我想按一個按鈕, 就把外部 exe檔關閉, 應如何寫程式碼?
THANKS!


googleandy 發表於 16-11-7 17:26

成功了!

Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click
      ' 取得所以 Process清單
      Dim pro() As Process = System.Diagnostics.Process.GetProcesses()
      ' 判斷是否有符合的Process
      For Each process As Process In pro
            If ("calc").Equals(process.ProcessName) Then
                process.Kill()
            End If
      Next


    End Sub

jackthetan 發表於 16-11-7 18:40

如果是 C#, VB 這種常見程式,
如果問題不是很複雜的話,
查 google 應該比發文問快。
頁: [1]
查看完整版本: 請教 VB 問題