www.pudn.com > myActivebart.rar > backup.frm


VERSION 5.00 
Begin VB.Form Form16  
   Caption         =   "数据备份" 
   ClientHeight    =   4650 
   ClientLeft      =   60 
   ClientTop       =   345 
   ClientWidth     =   4785 
   Icon            =   "backup.frx":0000 
   LinkTopic       =   "Form16" 
   ScaleHeight     =   4650 
   ScaleWidth      =   4785 
   StartUpPosition =   2  '屏幕中心 
   Begin VB.DriveListBox Drive1  
      Height          =   300 
      Left            =   150 
      TabIndex        =   4 
      Top             =   600 
      Width           =   1665 
   End 
   Begin VB.DirListBox Dir1  
      Height          =   3450 
      Left            =   180 
      TabIndex        =   3 
      Top             =   1020 
      Width           =   1605 
   End 
   Begin VB.CommandButton Command3  
      Caption         =   "备份" 
      Height          =   405 
      Left            =   2310 
      TabIndex        =   2 
      Top             =   3840 
      Width           =   1065 
   End 
   Begin VB.CommandButton Command2  
      Caption         =   "退出" 
      Height          =   405 
      Left            =   3390 
      TabIndex        =   1 
      Top             =   3840 
      Width           =   1065 
   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 
      Height          =   315 
      Left            =   60 
      TabIndex        =   0 
      Top             =   120 
      Width           =   1905 
   End 
End 
Attribute VB_Name = "Form16" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
Private Sub Command1_Click() 
 
End Sub 
 
Private Sub Command2_Click() 
  Unload Me 
End Sub 
 
Private Sub Command3_Click() 
cnn.Close 
   MsgBox (Dir1.Path) 
End Sub 
 
Private Sub Drive1_Change() 
   Dir1.Path = Drive1.Drive 
End Sub