areyousure.frm

来自「详细说明:手写识别源码」· FRM 代码 · 共 73 行

FRM
73
字号
VERSION 5.00
Begin VB.Form frmConfirmation 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Confirmation"
   ClientHeight    =   990
   ClientLeft      =   2760
   ClientTop       =   3750
   ClientWidth     =   3405
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   990
   ScaleWidth      =   3405
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton NOButton 
      Caption         =   "&No"
      Height          =   375
      Left            =   1875
      TabIndex        =   1
      Top             =   540
      Width           =   1215
   End
   Begin VB.CommandButton YESButton 
      Caption         =   "&Yes"
      Height          =   375
      Left            =   315
      TabIndex        =   0
      Top             =   540
      Width           =   1215
   End
   Begin VB.Label Label1 
      Caption         =   "Are you sure want to Exit ?"
      Height          =   375
      Left            =   195
      TabIndex        =   2
      Top             =   120
      Width           =   3015
   End
End
Attribute VB_Name = "frmConfirmation"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居汉化收藏整理
'发布日期:2008/01/21
'描    述:手写字体识别软件 (v 2.01 beta)
'网    站:http://www.Mndsoft.com/  (VB6源码博客)
'网    站:http://www.VbDnet.com/   (VB.NET源码博客,主要基于.NET2005)
'e-mail  :Mndsoft@163.com
'e-mail  :Mndsoft@126.com
'OICQ    :88382850
'          如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************
Option Explicit
Public YES As Boolean

'Private Sub Form_Load()
'    Me.Left = (frmMain.Width / 2) - (Me.Width / 2)
'    Me.Top = (frmMain.ScaleHeight / 2) - (Me.Height)
'End Sub

Private Sub NOButton_Click()
    Unload Me
End Sub

Private Sub YESButton_Click()
    YES = True
    Unload Me
End Sub

⌨️ 快捷键说明

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