📄 frmchoose.frm
字号:
VERSION 5.00
Begin VB.Form FrmChoose
Caption = "学生选课系统"
ClientHeight = 5040
ClientLeft = 60
ClientTop = 345
ClientWidth = 5760
LinkTopic = "Form1"
Picture = "FrmChoose.frx":0000
ScaleHeight = 5040
ScaleWidth = 5760
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton CmdChangePass
Caption = "修改密码"
Height = 495
Left = 1560
TabIndex = 4
Top = 120
Width = 1695
End
Begin VB.CommandButton CmdExit
Caption = "退出"
Height = 615
Left = 1560
TabIndex = 3
Top = 3720
Width = 1695
End
Begin VB.CommandButton CmdChoose
Caption = "选课信息"
Height = 615
Left = 1560
TabIndex = 2
Top = 2760
Width = 1695
End
Begin VB.CommandButton CmdStudent
Caption = "学生信息"
Height = 615
Left = 1560
TabIndex = 1
Top = 1800
Width = 1695
End
Begin VB.CommandButton CmdCourse
Caption = "课程信息"
Height = 615
Left = 1560
TabIndex = 0
Top = 960
Width = 1695
End
End
Attribute VB_Name = "FrmChoose"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdChangePass_Click()
Unload Me
Form2.Show
End Sub
Private Sub CmdChoose_Click()
FrmSC.Show
Unload Me
End Sub
Private Sub CmdCourse_Click()
Unload Me
FrmCourse.Show
End Sub
Private Sub CmdExit_Click()
Form1.Show
Unload Me
End Sub
Private Sub CmdStudent_Click()
Unload Me
FrmStudent.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -