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

📄 main.frm

📁 这是一个非常 好的一个程序进行体会一下学生管理系统
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form4 
   Caption         =   "教务管理系统"
   ClientHeight    =   7470
   ClientLeft      =   60
   ClientTop       =   915
   ClientWidth     =   11745
   ForeColor       =   &H00FFFFFF&
   LinkTopic       =   "Form4"
   ScaleHeight     =   7470
   ScaleWidth      =   11745
   WindowState     =   2  'Maximized
   Begin MSComctlLib.ImageList ImageList1 
      Left            =   240
      Top             =   840
      _ExtentX        =   1005
      _ExtentY        =   1005
      BackColor       =   -2147483643
      ImageWidth      =   19
      ImageHeight     =   19
      MaskColor       =   12632256
      _Version        =   393216
      BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628} 
         NumListImages   =   1
         BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628} 
            Picture         =   "main.frx":0000
            Key             =   ""
         EndProperty
      EndProperty
   End
   Begin MSComctlLib.Toolbar Toolbar1 
      Align           =   1  'Align Top
      Height          =   660
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   11745
      _ExtentX        =   20717
      _ExtentY        =   1164
      ButtonWidth     =   1455
      ButtonHeight    =   1005
      Appearance      =   1
      ImageList       =   "ImageList1"
      _Version        =   393216
      BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628} 
         NumButtons      =   1
         BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628} 
            Caption         =   "学生管理"
            ImageIndex      =   1
         EndProperty
      EndProperty
   End
   Begin VB.Menu stu_info 
      Caption         =   "学生信息管理"
      WindowList      =   -1  'True
      Begin VB.Menu Stu_edit 
         Caption         =   "学生信息编辑"
      End
      Begin VB.Menu Stu_cx 
         Caption         =   "学生信息查询"
      End
      Begin VB.Menu Stu_out 
         Caption         =   "学生信息导出"
      End
   End
   Begin VB.Menu tea_info 
      Caption         =   "教师信息管理"
   End
   Begin VB.Menu xk_info 
      Caption         =   "学生选课信息管理"
   End
   Begin VB.Menu grade_info 
      Caption         =   "成绩信息管理"
      Begin VB.Menu grad_in 
         Caption         =   "成绩信息编辑"
      End
      Begin VB.Menu grade_tj 
         Caption         =   "成绩统计于分析"
      End
      Begin VB.Menu grade_pri 
         Caption         =   "成绩单打印"
      End
   End
   Begin VB.Menu Exit 
      Caption         =   "退出系统"
   End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub baseinfo_Click()

End Sub

Private Sub Exit_Click()
Dim re As Integer
re = MsgBox("您真的要离开吗?", 4 + 32 + 256, "请确认")
If re = 6 Then
Form4.Visible = False '隐藏登陆界面
Form3.Visible = True '显示“欢迎再次使用界面”
End If
End Sub

Private Sub Form_Load()
 Toolbar1.ImageList = ImageList1
End Sub

Private Sub Stu_edit_Click()
Form5.Visible = True
End Sub

Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Form5.Show
End Sub

⌨️ 快捷键说明

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