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

📄 runsqlfile.frm

📁 微软msde
💻 FRM
字号:
VERSION 5.00
Begin VB.Form RunSqlFile 
   Caption         =   "Form1"
   ClientHeight    =   2310
   ClientLeft      =   7275
   ClientTop       =   4065
   ClientWidth     =   2970
   LinkTopic       =   "Form1"
   ScaleHeight     =   2310
   ScaleWidth      =   2970
   Begin VB.ComboBox Combo1 
      Height          =   315
      ItemData        =   "RunSqlFile.frx":0000
      Left            =   240
      List            =   "RunSqlFile.frx":000A
      TabIndex        =   2
      Text            =   "UPDATE"
      Top             =   720
      Width           =   2535
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Run"
      Height          =   375
      Left            =   600
      TabIndex        =   1
      Top             =   1440
      Width           =   735
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Cancel"
      Height          =   375
      Left            =   1680
      TabIndex        =   0
      Top             =   1440
      Width           =   735
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      AutoSize        =   -1  'True
      Caption         =   "select the sql scripe:"
      Height          =   195
      Left            =   120
      TabIndex        =   3
      Top             =   360
      Width           =   2415
   End
End
Attribute VB_Name = "RunSqlFile"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
run (Me.Combo1.ListIndex)
Unload Me
End Sub

Private Sub Command2_Click()
Unload Me
End Sub

Private Sub Form_Load()
Me.Height = 2715
Me.Width = 3090
Me.Combo1.ListIndex = 0
End Sub

⌨️ 快捷键说明

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