📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form v6j088a
BackColor = &H00E0E0E0&
Caption = "多重窗体示例程序"
ClientHeight = 2715
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
FillColor = &H00C0C0C0&
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "Form1.frx":0000
LinkTopic = "Form1"
ScaleHeight = 2715
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command3
Caption = "结束"
Height = 375
Left = 1440
TabIndex = 3
Top = 2040
Width = 1455
End
Begin VB.CommandButton Command2
Caption = "计算成绩"
Height = 375
Left = 1440
TabIndex = 2
Top = 1440
Width = 1455
End
Begin VB.CommandButton Command1
Caption = "输入成绩"
Height = 375
Left = 1440
TabIndex = 1
Top = 840
Width = 1455
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "多重窗体示例程序"
Height = 240
Left = 1320
TabIndex = 0
Top = 240
Width = 1920
End
End
Attribute VB_Name = "v6j088a"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
'##################################################################
'## 过程名称:Command1_Click
'## 参数: 无
'##################################################################
Private Sub Command1_Click()
Form1.Hide
Form2.Show
End Sub
'##################################################################
'## 过程名称:Command2_Click
'## 参数: 无
'##################################################################
Private Sub Command2_Click()
Form1.Hide
Form3.Show
End Sub
'##################################################################
'## 过程名称:Command3_Click
'## 参数: 无
'##################################################################
Private Sub Command3_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -