form2.frm

来自「一款基于标准IC卡考勤数据读写操作示例的开发源程序。主要给需要开发IC卡和考勤系」· FRM 代码 · 共 63 行

FRM
63
字号
VERSION 5.00
Begin VB.Form Form2 
   Caption         =   "数据采集"
   ClientHeight    =   2175
   ClientLeft      =   3585
   ClientTop       =   3465
   ClientWidth     =   4680
   LinkTopic       =   "Form2"
   ScaleHeight     =   2175
   ScaleWidth      =   4680
   Begin VB.CommandButton Command1 
      Caption         =   "取消"
      Height          =   375
      Left            =   3240
      TabIndex        =   1
      Top             =   1560
      Width           =   975
   End
   Begin VB.Label Label1 
      Caption         =   "Label1"
      Height          =   255
      Left            =   720
      TabIndex        =   2
      Top             =   240
      Width           =   3375
   End
   Begin VB.Label Msg 
      Caption         =   "正在采集数据,请稍候....按取消键可以中断数据采集。"
      Height          =   375
      Left            =   720
      TabIndex        =   0
      Top             =   720
      Width           =   3255
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居收藏整理
'发布日期:2008/03/08
'描    述:标准太平洋IC考勤机开发读写数据示例
'网    站:http://www.Mndsoft.com/  (VB6源码博客)
'网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
'e-mail  :Mndsoft@163.com
'e-mail  :Mndsoft@126.com
'OICQ    :88382850
'          如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************
Public bCancel As Boolean

Private Sub Command1_Click()
   bCancel = True
   Unload Form2
End Sub

Private Sub Form_Load()
   bCancel = False
End Sub

⌨️ 快捷键说明

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