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

📄 message setup.frm

📁 bartender专业条码软件的VB二次开发
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Dialog 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Batchelor"
   ClientHeight    =   3870
   ClientLeft      =   3975
   ClientTop       =   4380
   ClientWidth     =   6960
   Icon            =   "Message Setup.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "Message Setup.frx":000C
   ScaleHeight     =   3870
   ScaleWidth      =   6960
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton OKButton 
      Caption         =   "OK"
      Height          =   450
      Left            =   2610
      TabIndex        =   0
      Top             =   3210
      Width           =   1470
   End
   Begin VB.CheckBox chkIgnoreAllErrors 
      Caption         =   "Ignore all Automation Errors.  (If ignored all labels may not print.)"
      Height          =   405
      Left            =   780
      TabIndex        =   1
      Top             =   2670
      Width           =   4860
   End
   Begin VB.Label lblErrorDescription 
      Height          =   2280
      Left            =   840
      TabIndex        =   2
      Top             =   255
      Width           =   5535
   End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()
'Centers the utility on the screen
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2

End Sub

Private Sub OKButton_Click()
m_iIgnoreAllErrorsFlag = chkIgnoreAllErrors.Value
Unload Me
End Sub

⌨️ 快捷键说明

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