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

📄 frmts.frm

📁 好用的考试系统.rar可以实现简单的功能
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Frmts 
   Caption         =   "提示"
   ClientHeight    =   1785
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   3600
   LinkTopic       =   "Form3"
   ScaleHeight     =   1785
   ScaleWidth      =   3600
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Cmdml 
      Caption         =   "交卷评分"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   450
      Index           =   1
      Left            =   1920
      TabIndex        =   2
      Top             =   1200
      Width           =   1000
   End
   Begin VB.CommandButton Cmdml 
      Caption         =   "补做"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   450
      Index           =   0
      Left            =   720
      TabIndex        =   1
      Top             =   1200
      Width           =   1000
   End
   Begin VB.TextBox Txtsm 
      Alignment       =   2  'Center
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   975
      Left            =   360
      MultiLine       =   -1  'True
      TabIndex        =   0
      Top             =   120
      Width           =   3135
   End
End
Attribute VB_Name = "Frmts"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdml_Click(Index As Integer)
   If Index = 1 Then                     '选择“交卷评分”按钮,则打开评分统计Frmtj窗体
       Frmtj.Show
   End If
   Unload Me
End Sub

Private Sub Form_Load()
    CenterOnSetupForm Me
'vbCrLf 代表Chr(13)+Chr(10),即回车换行
    Txtsm.Text = "选择题还有" & Str(20 - sele) & "题未做!" & _
                 vbCrLf & "填空题还有" & Str(10 - fill) & "题未做!"
End Sub

⌨️ 快捷键说明

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