📄 frmmain.frm
字号:
VERSION 5.00
Begin VB.Form frmMain
BorderStyle = 3 'Fixed Dialog
Caption = "EasySQL demo"
ClientHeight = 2235
ClientLeft = 4455
ClientTop = 2475
ClientWidth = 2685
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2235
ScaleWidth = 2685
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdDemo
Caption = "Run demo"
Height = 375
Left = 765
TabIndex = 3
Top = 1320
Width = 1155
End
Begin VB.ListBox lstDemo
Height = 645
ItemData = "frmMain.frx":030A
Left = 555
List = "frmMain.frx":0317
TabIndex = 2
Top = 480
Width = 1575
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Select demo:"
Height = 195
Left = 877
TabIndex = 1
Top = 180
Width = 930
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "Daniel Chirca - D.Chirca@finsiel.ro"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 195
Left = 112
TabIndex = 0
Top = 1920
Width = 2460
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdDemo_Click()
Select Case Me.lstDemo.ListIndex
Case 0:
frmSelect.Show vbModal, Me
Case 1:
frmInsert.Show vbModal, Me
Case 2:
frmUpdate.Show vbModal, Me
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -