⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmmain.frm

📁 这是一个学生学籍管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.MDIForm frmMain 
   BackColor       =   &H8000000C&
   Caption         =   "教务管理系统"
   ClientHeight    =   5925
   ClientLeft      =   165
   ClientTop       =   450
   ClientWidth     =   8385
   Icon            =   "frmMain.frx":0000
   LinkTopic       =   "Form1"
   StartUpPosition =   2  '屏幕中心
   WindowState     =   2  'Maximized
   Begin VB.Menu mnBasic 
      Caption         =   "基础维护(&W)"
      Begin VB.Menu mnClass 
         Caption         =   "班级信息维护(&X)"
      End
      Begin VB.Menu mnStudent 
         Caption         =   "学生信息维护(&Y)"
      End
      Begin VB.Menu mnSubject 
         Caption         =   "课程信息维护(&Z)"
      End
   End
   Begin VB.Menu mnTeach 
      Caption         =   "教学管理(&X)"
      Begin VB.Menu mnSelect 
         Caption         =   "学生选课(&X)"
      End
      Begin VB.Menu mnCourse 
         Caption         =   "课表查询(&Y)"
      End
      Begin VB.Menu mnResult 
         Caption         =   "成绩输入(&Z)"
      End
   End
   Begin VB.Menu mnQuery 
      Caption         =   "成绩查询(&Y)"
      Begin VB.Menu mnReport 
         Caption         =   "查询成绩单(&Z)"
      End
   End
   Begin VB.Menu mnExit 
      Caption         =   "退出系统(&Z)"
   End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub mnClass_Click()
    Dim frm As New frmClass
    frm.Show
End Sub

Private Sub mnCourse_Click()
    Dim frm As New frmCourse
    frm.Show
End Sub

Private Sub mnExit_Click()
    End
End Sub

Private Sub mnReport_Click()
    Dim frm As New frmReport
    frm.Show
End Sub

Private Sub mnResult_Click()
    Dim frm As New frmScore
    frm.Show
End Sub

Private Sub mnSelect_Click()
    Dim frm As New frmSelect
    frm.Show
End Sub

Private Sub mnStudent_Click()
    Dim frm As New frmStudent
    frm.Show
End Sub

Private Sub mnSubject_Click()
    Dim frm As New frmSubject
    frm.Show
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -