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

📄 frmexit.frm

📁 vb写得进销存
💻 FRM
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Begin VB.Form frmExit 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "退出备份"
   ClientHeight    =   1590
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4590
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1590
   ScaleWidth      =   4590
   StartUpPosition =   2  '屏幕中心
   Begin MSComDlg.CommonDialog cd 
      Left            =   1185
      Top             =   1560
      _ExtentX        =   847
      _ExtentY        =   847
      _Version        =   393216
   End
   Begin VB.CommandButton Command2 
      Caption         =   "退出"
      Height          =   345
      Left            =   3255
      TabIndex        =   1
      Top             =   945
      Width           =   1125
   End
   Begin VB.CommandButton Command1 
      Caption         =   "备份"
      Height          =   345
      Left            =   3255
      TabIndex        =   0
      Top             =   330
      Width           =   1125
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   270
      Picture         =   "frmExit.frx":0000
      Top             =   315
      Width           =   480
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "建议您备份您的数据库文件"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Index           =   0
      Left            =   915
      TabIndex        =   2
      Top             =   360
      Width           =   2145
   End
   Begin VB.Label Label1 
      Caption         =   "建议您备份您的数据库文件"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00808080&
      Height          =   615
      Index           =   1
      Left            =   885
      TabIndex        =   3
      Top             =   345
      Width           =   2145
   End
End
Attribute VB_Name = "frmExit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
On Error GoTo eH
    cd.FileName = "back.mdb"
    cd.ShowSave
    FileCopy App.Path & "\qipei.mdb", cd.FileName
    Unload Me
Exit Sub
eH:
End Sub

Private Sub Command2_Click()
    Unload Me
End Sub

⌨️ 快捷键说明

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