frmselecttable.frm

来自「用XML做专家系统的一个编译器,有说明书,使用简单,有模板」· FRM 代码 · 共 62 行

FRM
62
字号
VERSION 5.00
Begin VB.Form frmSelectTable 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Select a Table"
   ClientHeight    =   2400
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3135
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2400
   ScaleWidth      =   3135
   StartUpPosition =   2  'CenterScreen
   Begin VB.CommandButton Command2 
      Caption         =   "取消"
      Height          =   400
      Left            =   1800
      TabIndex        =   2
      Top             =   1920
      Width           =   975
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   400
      Left            =   360
      TabIndex        =   1
      Top             =   1920
      Width           =   975
   End
   Begin VB.ListBox List1 
      Height          =   1815
      ItemData        =   "frmSelectTable.frx":0000
      Left            =   0
      List            =   "frmSelectTable.frx":0002
      Sorted          =   -1  'True
      TabIndex        =   0
      Top             =   0
      Width           =   3135
   End
End
Attribute VB_Name = "frmSelectTable"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Command1_Click()
    frmLearning.TableName = List1.List(List1.ListIndex)
    Unload Me
End Sub

Private Sub Command2_Click()
Unload Me
End Sub

Private Sub List1_DblClick()
    frmLearning.TableName = List1.List(List1.ListIndex)
    Unload Me
End Sub

⌨️ 快捷键说明

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