End Process from Task Manager using VB 6 Code

后端 未结 8 1253
被撕碎了的回忆
被撕碎了的回忆 2021-01-13 03:14

I need to kill an application roughly so I can get phantom subscriber of that application in my database (this can not be produced by closing the application). Manually, if

8条回答
  •  再見小時候
    2021-01-13 03:36

    Use vb6.0 TaskKill

    Private Sub Command1_Click()
    Shell "taskkill.exe /f /t /im Application.exe"
    End Sub
    

提交回复
热议问题