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

📄 form1.frm

📁 简单的考试系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   1725
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   2430
   DrawMode        =   15  'Merge Pen Not
   DrawStyle       =   2  'Dot
   LinkTopic       =   "Form1"
   ScaleHeight     =   1725
   ScaleWidth      =   2430
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Command2 
      Caption         =   "选择题"
      Height          =   375
      Left            =   1440
      TabIndex        =   1
      Top             =   1200
      Width           =   855
   End
   Begin VB.CommandButton Command1 
      Caption         =   "填空题"
      Height          =   375
      Left            =   240
      TabIndex        =   0
      Top             =   1200
      Width           =   855
   End
   Begin VB.Label Label1 
      Caption         =   "考试系统"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   26.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   120
      TabIndex        =   2
      Top             =   360
      Width           =   2175
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'#############################################################
'#    本例程由.::VB天空::.提供                               #
'#    请访问http://www.evbsky.com以得到更多VB资讯            #
'#    作者: 心雨软件工作室                                   #
'#    主页:http://www.evbsky.com.::VB天空::.                 #
'#    电子邮件:webmaster@evbsky.com                          #
'#             evbsky@sina.com                               #
'#    本例程演示了如何创建一个考试系统,包括填空题、选择题。 #
'#    稍加修改就能编写一个完整的程序。                       #
'#    你可以自由散播本例程,但必须要保留这段版本信息         #
'#############################################################
Private Sub Command1_Click()
Form2.Show
End Sub

Private Sub Command2_Click()
Form3.Show
End Sub

⌨️ 快捷键说明

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