登录 注册
当前位置:主页 > 资源下载 > 49 > 一键卸载MYSQL服务

一键卸载MYSQL服务

  • 更新:2024-11-12 19:56:32
  • 大小:4KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:VB - 后端
  • 格式:ZIP

资源介绍

VB一键卸载MYSQL服务 部分代码展示 VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3090 ClientLeft = 60 ClientTop = 450 ClientWidth = 4680 LinkTopic = "Form1" ScaleHeight = 3090 ScaleWidth = 4680 StartUpPosition = 3 '窗口缺省 End Attribute VB_Name = "Form1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Form_Load() Dim path As String path = App.path Shell ("net stop mysql") Shell ("""" & path & "\mysql\bin\mysqld"" -remove") Unload Me End Sub