📄 formmain.frm
字号:
VERSION 5.00
Begin VB.Form FormMain
Caption = "招生管理系统"
ClientHeight = 8340
ClientLeft = 60
ClientTop = 750
ClientWidth = 11955
ForeColor = &H000000FF&
LinkTopic = "Form1"
Picture = "FormMain.frx":0000
ScaleHeight = 8340
ScaleWidth = 11955
StartUpPosition = 2 '屏幕中心
WindowState = 2 'Maximized
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "欢迎您进入招生管理系统"
BeginProperty Font
Name = "宋体"
Size = 42
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1575
Left = 3720
TabIndex = 0
Top = 5160
Width = 9495
End
Begin VB.Menu Systemcapasity
Caption = "系统功能"
Begin VB.Menu AlterPassword
Caption = "修改密码"
End
Begin VB.Menu AddUser
Caption = "添加用户"
End
End
Begin VB.Menu StuImformation
Caption = "考生信息"
Begin VB.Menu InputStuInfor
Caption = "输入考生信息"
End
Begin VB.Menu ShowStuInfor
Caption = "显示考生信息"
End
Begin VB.Menu StuInforAccount
Caption = "考生信息统计"
End
End
Begin VB.Menu StuPlan
Caption = "招生计划"
Begin VB.Menu InputStuPlan
Caption = "输入招生计划"
End
Begin VB.Menu ShowStuPlan
Caption = "显示招生计划"
End
Begin VB.Menu QueryStuPlan
Caption = "查询招生计划"
End
Begin VB.Menu StuPlanAccount
Caption = "招生计划统计"
End
End
Begin VB.Menu HadStuInfor
Caption = "招生信息"
Begin VB.Menu ShowAll
Caption = "查看学生信息"
End
Begin VB.Menu EachStuInfor
Caption = "各省学生信息"
End
Begin VB.Menu EachSecInfor
Caption = "院系学生信息"
End
End
Begin VB.Menu InforAssit
Caption = "帮助信息"
End
End
Attribute VB_Name = "FormMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub AddUser_Click()
FrmAddUser.Show
End Sub
Private Sub AlterPassword_Click()
FrmAlterPassword.Show
End Sub
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub EachSecInfor_Click()
FrmEachSecInfor.Show
End Sub
Private Sub EachStuInfor_Click()
FrmEachStuInfor.Show
End Sub
Private Sub InforAssit_Click()
FrmHelp.Show
End Sub
Private Sub InputStuInfor_Click()
FrmInputStuInfor.Show
End Sub
Private Sub InputStuPlan_Click()
FrmInputStuPlan.Show
End Sub
Private Sub LoginSystem_Click()
frmLogin.Show
End Sub
Private Sub QueryStuPlan_Click()
FrmQueryStuPlan.Show
End Sub
Private Sub QuitSystem_Click()
Unload Me
End Sub
Private Sub ShowAll_Click()
FrmShowAllStu.Show
End Sub
Private Sub ShowStuInfor_Click()
FrmShowStuInfor.Show
End Sub
Private Sub ShowStuPlan_Click()
FrmShowStuPlan.Show
End Sub
Private Sub StuInforAccount_Click()
FrmStuInforAccount.Show
End Sub
Private Sub StuPlanAccount_Click()
FrmStuPlanAccount.Show
End Sub
Private Sub Form_Load()
AddUser.Enabled = True
StuImformation.Enabled = True
StuPlan.Enabled = True
HadStuInfor.Enabled = True
Dim X0 As Long
Dim Y0 As Long
'让窗体居中
X0 = Screen.Width
Y0 = Screen.Height
X0 = (X0 - Me.Width) / 2
Y0 = (Y0 - Me.Height) / 2
Me.Move X0, Y0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -