记一次VB Windows程序的启动和退出处理

前端之家收集整理的这篇文章主要介绍了记一次VB Windows程序的启动和退出处理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

退出VB应用程序,连带退出指定的进程

Private Sub proExit_Click()

Shell "cmd /c taskkill /f /im process.exe"

Unload Me

End

End Sub


应用启动cmd程序,不显示cmd窗口

Private Sub startDemonProcess()

On Error Resume Next

Dim ProcessPath As String

ProcessPath = App.Path & "\process.exe"

Dim RetVal

RetVal = Shell(ProcessPath,vbHide) '参数vbHide用于设置不显示启动的程序窗口

End Sub

原文链接:https://www.f2er.com/vb/256643.html

猜你在找的VB相关文章