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

📄 main_frm.frm

📁 一个学生信息管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form main_frm 
   Caption         =   "学生信息管理"
   ClientHeight    =   8490
   ClientLeft      =   2580
   ClientTop       =   2325
   ClientWidth     =   11835
   LinkTopic       =   "Form1"
   Picture         =   "main_frm.frx":0000
   ScaleHeight     =   8490
   ScaleWidth      =   11835
   Begin VB.Timer Timer1 
      Interval        =   500
      Left            =   10560
      Top             =   480
   End
   Begin VB.Label Label5 
      BackStyle       =   0  'Transparent
      Caption         =   "DESIGNED BY LML"
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   21.75
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   735
      Left            =   3960
      TabIndex        =   4
      Top             =   3240
      Width           =   3855
   End
   Begin VB.Label Label4 
      BackStyle       =   0  'Transparent
      Caption         =   "LUO"
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   21.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   3840
      TabIndex        =   3
      Top             =   7080
      Width           =   975
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "HORSE"
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   21.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   480
      TabIndex        =   2
      Top             =   7080
      Width           =   1455
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "AMEN"
      BeginProperty Font 
         Name            =   "Monotype Corsiva"
         Size            =   21.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   2160
      TabIndex        =   1
      Top             =   7080
      Width           =   1335
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎进入学生信息管理系统"
      BeginProperty Font 
         Name            =   "华文彩云"
         Size            =   42
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   975
      Left            =   600
      TabIndex        =   0
      Top             =   1440
      Width           =   10455
   End
   Begin VB.Menu system 
      Caption         =   "系统"
      Begin VB.Menu add_user 
         Caption         =   "添加用户"
      End
      Begin VB.Menu edit_mima 
         Caption         =   "修改密码"
      End
      Begin VB.Menu admin 
         Caption         =   "管理员面板"
      End
      Begin VB.Menu quit 
         Caption         =   "退出系统"
      End
   End
   Begin VB.Menu stu_msg 
      Caption         =   "学生学籍管理"
      Begin VB.Menu stu_gl 
         Caption         =   "学籍管理"
      End
      Begin VB.Menu msg_find 
         Caption         =   "信息查询"
      End
   End
   Begin VB.Menu course_gl 
      Caption         =   "课程"
      Begin VB.Menu course_set 
         Caption         =   "课程设置"
      End
      Begin VB.Menu course_find 
         Caption         =   "课程查询"
      End
   End
   Begin VB.Menu stu_status 
      Caption         =   "学生状态"
      Begin VB.Menu sta_edit 
         Caption         =   "状态编辑"
      End
      Begin VB.Menu sta_find 
         Caption         =   "状态查询"
      End
   End
   Begin VB.Menu officer 
      Caption         =   "骨干机构"
      Begin VB.Menu Party 
         Caption         =   "党支部"
      End
      Begin VB.Menu round 
         Caption         =   "团支部"
      End
      Begin VB.Menu group 
         Caption         =   "区队"
      End
   End
   Begin VB.Menu grade 
      Caption         =   "成绩"
      Begin VB.Menu grade_gl 
         Caption         =   "成绩管理"
      End
      Begin VB.Menu grade_find 
         Caption         =   "成绩查询"
      End
      Begin VB.Menu scholar 
         Caption         =   "奖罚名单"
      End
   End
   Begin VB.Menu help 
      Caption         =   "帮助"
      Begin VB.Menu instruction 
         Caption         =   "使用说明"
      End
      Begin VB.Menu surport 
         Caption         =   "技术支持"
      End
   End
End
Attribute VB_Name = "main_frm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub add_user_Click()
   frmAdduser.Show
End Sub

Private Sub admin_Click()
   frmadmin.Show
End Sub

Private Sub course_find_Click()
   frmcourse_set.Show
 
End Sub

Private Sub course_set_Click()
   frmcourse_set.Show
   frmcourse_set.Label7.Enabled = False
End Sub

Private Sub edit_mima_Click()
   Editpassword.Show
End Sub

Private Sub grade_find_Click()
   frmgrade_gl.Show
   frmgrade_gl.Label4.Visible = False
   frmgrade_gl.Label5.Visible = False
   frmgrade_gl.Label6.Visible = False
   frmgrade_gl.Line3.Visible = False
   frmgrade_gl.Line4.Visible = False
   frmgrade_gl.Line5.Visible = False
   
End Sub

Private Sub grade_gl_Click()
   frmgrade_gl.Show
End Sub

Private Sub msg_find_Click()
   frmstu_gl.Show
   frmstu_gl.Frame2.Visible = False
   frmstu_gl.Command6.Visible = False
   frmstu_gl.Command7.Visible = False
   frmstu_gl.Command8.Visible = False
   frmstu_gl.Command9.Visible = False
   frmstu_gl.Command10.Visible = False
   
End Sub

Private Sub quit_Click()
   End
End Sub

Private Sub scholar_Click()
    frmmenu.Show
End Sub

Private Sub sta_edit_Click()
    frmsta_edit.Show
End Sub

Private Sub sta_find_Click()
    frmsta_edit.Show
    frmsta_edit.Command1.Visible = False
End Sub

Private Sub stu_gl_Click()
   frmstu_gl.Show
End Sub

Private Sub Timer1_Timer()
      If Label1.ForeColor = RGB(0, 0, 255) Then
      Label1.ForeColor = RGB(255, 0, 0)
   Else
      If Label1.ForeColor = RGB(255, 0, 0) Then
        Label1.ForeColor = RGB(0, 255, 0)
      Else
        If Label1.ForeColor = RGB(0, 255, 0) Then
          Label1.ForeColor = RGB(0, 0, 255)
        End If
      End If
   End If
End Sub

⌨️ 快捷键说明

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