怎样把软件嵌入到VB中,实现点击按扭自动打开软件

来源:百度知道 编辑:UC知道 时间:2024/06/17 05:37:18
如:寒冰WEB入侵包,也就是写的工具,集成了自己常用的软件

Private Sub Form_Load()
On Error Resume Next
Dim APP1() As Byte
If Dir(App.Path & "\xx.exe") = "" Then
APP1 = LoadResData(101, "CUSTOM")
Open App.Path & "\xx.exe" For Binary As #2
Put #2, , APP1
Close #2
End If
End Sub

shell “路径+寒冰WEB入侵包.exe” 就可调用了