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