frmchoose.frm

来自「学生选修课程管理系统的设计与实现 目 录 一、需求分析 2 1.1系统」· FRM 代码 · 共 82 行

FRM
82
字号
VERSION 5.00
Begin VB.Form FrmChoose 
   Caption         =   "学生选课系统"
   ClientHeight    =   5040
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   5760
   LinkTopic       =   "Form1"
   Picture         =   "FrmChoose.frx":0000
   ScaleHeight     =   5040
   ScaleWidth      =   5760
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton CmdChangePass 
      Caption         =   "修改密码"
      Height          =   495
      Left            =   1560
      TabIndex        =   4
      Top             =   120
      Width           =   1695
   End
   Begin VB.CommandButton CmdExit 
      Caption         =   "退出"
      Height          =   615
      Left            =   1560
      TabIndex        =   3
      Top             =   3720
      Width           =   1695
   End
   Begin VB.CommandButton CmdChoose 
      Caption         =   "选课信息"
      Height          =   615
      Left            =   1560
      TabIndex        =   2
      Top             =   2760
      Width           =   1695
   End
   Begin VB.CommandButton CmdStudent 
      Caption         =   "学生信息"
      Height          =   615
      Left            =   1560
      TabIndex        =   1
      Top             =   1800
      Width           =   1695
   End
   Begin VB.CommandButton CmdCourse 
      Caption         =   "课程信息"
      Height          =   615
      Left            =   1560
      TabIndex        =   0
      Top             =   960
      Width           =   1695
   End
End
Attribute VB_Name = "FrmChoose"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdChangePass_Click()
Unload Me
Form2.Show
End Sub

Private Sub CmdChoose_Click()
FrmSC.Show
Unload Me
End Sub

Private Sub CmdCourse_Click()
 Unload Me
FrmCourse.Show
End Sub
Private Sub CmdExit_Click()
Form1.Show
Unload Me
End Sub

Private Sub CmdStudent_Click()
Unload Me
FrmStudent.Show
End Sub

⌨️ 快捷键说明

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