📄 form1.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 5325
ClientLeft = 165
ClientTop = 735
ClientWidth = 8145
LinkTopic = "Form1"
ScaleHeight = 5325
ScaleWidth = 8145
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ImageList ImageList1
Left = 2040
Top = 1440
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 34
ImageHeight = 33
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 6
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":0000
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":0294
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":03E1
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":0561
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":0746
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "Form1.frx":093D
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 675
Left = 0
TabIndex = 1
Top = 0
Width = 8145
_ExtentX = 14367
_ExtentY = 1191
ButtonWidth = 1085
ButtonHeight = 1032
Appearance = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 6
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "增加学生档案"
ImageIndex = 1
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "学生信息管理"
ImageIndex = 2
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Object.ToolTipText = "学生档案查询"
ImageIndex = 3
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
ImageIndex = 4
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
ImageIndex = 5
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
ImageIndex = 6
EndProperty
EndProperty
End
Begin MSComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 375
Left = 0
TabIndex = 0
Top = 4950
Width = 8145
_ExtentX = 14367
_ExtentY = 661
SimpleText = "学生档案管理系统"
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 2
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 11298
Text = "学生档案管理系统"
TextSave = "学生档案管理系统"
Object.ToolTipText = "学生档案管理系统"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Text = "程序设计:孙蕾"
TextSave = "程序设计:孙蕾"
EndProperty
EndProperty
End
Begin VB.Image Image1
Height = 6000
Left = 0
Picture = "Form1.frx":0C09
Top = 720
Width = 8580
End
Begin VB.Menu student
Caption = "学生档案管理"
Begin VB.Menu addstudent
Caption = "增加学生档案"
End
Begin VB.Menu managestu
Caption = "学生信息管理"
End
Begin VB.Menu searchstu
Caption = "学生档案查询"
End
Begin VB.Menu exit
Caption = "退出"
End
End
Begin VB.Menu chengji
Caption = "成绩管理"
Begin VB.Menu addcj
Caption = "增加学生成绩"
End
Begin VB.Menu managecj
Caption = "管理学生成绩"
End
Begin VB.Menu searchcj
Caption = "查询学生成绩"
End
End
Begin VB.Menu setsystem
Caption = "系统设置"
Begin VB.Menu class
Caption = "班级管理"
End
Begin VB.Menu kemu
Caption = "班级科目管理"
End
End
Begin VB.Menu pass
Caption = "密码修改"
End
Begin VB.Menu help
Caption = "帮助"
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub addcj_Click()
Form5.Show 1
End Sub
Private Sub addstudent_Click()
Form2.Show 1
End Sub
Private Sub class_Click()
Form8.Show 1
End Sub
Private Sub exit_Click()
End
End Sub
Private Sub help_Click()
Form10.Show 1
End Sub
Private Sub kemu_Click()
Form9.Show 1
End Sub
Private Sub managecj_Click()
Form6.Show 1
End Sub
Private Sub managestu_Click()
Form3.Show 1
End Sub
Private Sub pass_Click()
Form11.Show 1
End Sub
Private Sub searchcj_Click()
Form7.Show 1
End Sub
Private Sub searchstu_Click()
Form4.Show 1
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Index
Case 1
Form2.Show 1 'addstudent_Click
Case 2
Form3.Show 1 'index2_Click
Case 3
Form4.Show 1
Case 4
Form5.Show 1
Case 5
Form6.Show 1
Case 6
Form7.Show 1
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -