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

📄 frm_exit.frm

📁 基于vb的图书管理系统的设计
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_exit 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "退出对话框"
   ClientHeight    =   1230
   ClientLeft      =   2760
   ClientTop       =   3750
   ClientWidth     =   3780
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   MousePointer    =   1  'Arrow
   ScaleHeight     =   1230
   ScaleWidth      =   3780
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton cmdCancel 
      Caption         =   "取 消"
      Height          =   375
      Left            =   2520
      TabIndex        =   3
      ToolTipText     =   "放弃退出"
      Top             =   765
      Width           =   1140
   End
   Begin VB.CommandButton cmdBackup 
      Caption         =   "备份后退出"
      Height          =   375
      Left            =   1320
      TabIndex        =   2
      ToolTipText     =   "数据库信息备份"
      Top             =   765
      Width           =   1140
   End
   Begin VB.CommandButton cmdExit 
      Caption         =   "直接退出"
      Height          =   375
      Left            =   135
      TabIndex        =   1
      ToolTipText     =   "数据库信息不备份"
      Top             =   765
      Width           =   1140
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   180
      Picture         =   "frm_exit.frx":0000
      Top             =   135
      Width           =   480
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "真的要退出吗,请选择退出方式!"
      ForeColor       =   &H00000000&
      Height          =   180
      Left            =   945
      TabIndex        =   0
      Top             =   270
      Width           =   2700
   End
End
Attribute VB_Name = "frm_exit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

Private Sub cmdBackUp_Click()
 backupFlag = False
 Unload Me
 frm_BackUp.Show 1
 
End Sub

Private Sub cmdCancel_Click()
Unload Me
endFlag = True
End Sub

Private Sub cmdExit_Click()
 End
End Sub

⌨️ 快捷键说明

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