qidong.frm

来自「试卷生成和评分系统 试卷生成和评分系统」· FRM 代码 · 共 69 行

FRM
69
字号
VERSION 5.00
Begin VB.Form qidong 
   Caption         =   "试卷生成和评分系统"
   ClientHeight    =   1875
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   6240
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   1875
   ScaleWidth      =   6240
   StartUpPosition =   2  'CenterScreen
   Begin VB.Frame Frame1 
      Caption         =   "用户选项"
      Height          =   1575
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   6015
      Begin VB.CommandButton Command1 
         Caption         =   "教师登录"
         Height          =   615
         Index           =   0
         Left            =   120
         TabIndex        =   3
         Top             =   480
         Width           =   1695
      End
      Begin VB.CommandButton Command1 
         Caption         =   "学生登录"
         Height          =   615
         Index           =   1
         Left            =   2040
         TabIndex        =   2
         Top             =   480
         Width           =   1695
      End
      Begin VB.CommandButton Command2 
         Caption         =   "退出"
         Height          =   615
         Left            =   3960
         TabIndex        =   1
         Top             =   480
         Width           =   1695
      End
   End
End
Attribute VB_Name = "qidong"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click(Index As Integer)
    Dim i As Integer
    i = Index
    Select Case i
    Case 0
    manager.Show
    Case 1
    student.Show
    End Select
    Unload Me
End Sub

Private Sub Command2_Click()
    End
End Sub

⌨️ 快捷键说明

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