?? 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 + -