⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmstart.frm

📁 VC【下载Picasa】。Picasa 是Google提供的一个 Windows 应用程序;用户可以借助于该程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmStart 
   Caption         =   "Start File"
   ClientHeight    =   2100
   ClientLeft      =   2445
   ClientTop       =   4215
   ClientWidth     =   4305
   LinkTopic       =   "Form1"
   ScaleHeight     =   2100
   ScaleWidth      =   4305
   Begin VB.CommandButton Command1 
      Caption         =   "运行"
      Default         =   -1  'True
      Height          =   375
      Left            =   720
      TabIndex        =   0
      Top             =   1320
      Width           =   2775
   End
   Begin VB.Label Label1 
      Caption         =   "exe程序调用演示  by 芝麻ET"
      Height          =   255
      Left            =   900
      TabIndex        =   1
      Top             =   495
      Width           =   2490
   End
End
Attribute VB_Name = "frmStart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
 Dim r As Long
 Dim file As String
  
 file = "E:\hackertools\domain3.5\Domain3.5\Domain3.5.exe" '把要运行的程序与路径填这里
 path = Left(file, InStrRev(file, "\"))
 r = StartDoc(file)
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -