📄 frmmain.frm
字号:
VERSION 5.00
Begin VB.Form FrmMain
Caption = "Form3"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form3"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command3
Caption = "退出"
Height = 375
Left = 840
TabIndex = 2
Top = 2520
Width = 3015
End
Begin VB.CommandButton Command2
Caption = "用ADODB给Lable控件赋值"
Height = 375
Left = 840
TabIndex = 1
Top = 1560
Width = 3015
End
Begin VB.CommandButton Command1
Caption = "用ADODC给Lable控件赋值"
Height = 375
Left = 840
TabIndex = 0
Top = 600
Width = 3015
End
End
Attribute VB_Name = "FrmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'使用ADODC给Lable控件赋值
Private Sub Command1_Click()
Form1.Show
End Sub
'使用ADODB给Lable控件赋值
Private Sub Command2_Click()
Form2.Show
End Sub
'单击后退出
Private Sub Command3_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -