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

📄 frmtest.frm

📁 排队分诊管理系统源代码!该代码使用VB6开发环境
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmTest 
   Caption         =   "Form1"
   ClientHeight    =   2025
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   5250
   LinkTopic       =   "Form1"
   ScaleHeight     =   2025
   ScaleWidth      =   5250
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton cmdQuit 
      Caption         =   "退出(&Q)"
      Height          =   495
      Left            =   3840
      TabIndex        =   4
      Top             =   1440
      Width           =   1215
   End
   Begin VB.CommandButton cmd4 
      Caption         =   "功能四"
      Height          =   495
      Left            =   2880
      TabIndex        =   3
      Top             =   840
      Width           =   2175
   End
   Begin VB.CommandButton cmd3 
      Caption         =   "功能三"
      Height          =   495
      Left            =   360
      TabIndex        =   2
      Top             =   840
      Width           =   2175
   End
   Begin VB.CommandButton cmd2 
      Caption         =   "功能二"
      Height          =   495
      Left            =   2880
      TabIndex        =   1
      Top             =   240
      Width           =   2175
   End
   Begin VB.CommandButton cmd1 
      Caption         =   "功能一"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   240
      Width           =   2175
   End
End
Attribute VB_Name = "frmTest"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Dim objQueue As clsCustService

Private Sub cmd1_Click()
    Dim s As String
    objQueue.AddQueue 1, s
End Sub

Private Sub cmdQuit_Click()
    Unload Me
End Sub

Private Sub Form_Load()
    On Error GoTo ERROR_EXIT
    
    Set objQueue = New clsCustService
    
    Exit Sub
ERROR_EXIT:
    Debug.Print "Form_Load Is Error!" & Error(Err.Number)
End Sub

⌨️ 快捷键说明

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