📄 form14.frm
字号:
VERSION 5.00
Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "comctl32.ocx"
Begin VB.Form Form14
BackColor = &H008080FF&
BorderStyle = 1 'Fixed Single
Caption = "数据备份"
ClientHeight = 5790
ClientLeft = 45
ClientTop = 435
ClientWidth = 8790
ForeColor = &H008080FF&
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5790
ScaleWidth = 8790
Begin ComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 615
Left = 0
TabIndex = 5
Top = 5175
Width = 8790
_ExtentX = 15505
_ExtentY = 1085
SimpleText = ""
_Version = 327682
BeginProperty Panels {0713E89E-850A-101B-AFC0-4210102A8DA7}
NumPanels = 3
BeginProperty Panel1 {0713E89F-850A-101B-AFC0-4210102A8DA7}
Object.Width = 5292
MinWidth = 5292
Text = " 备份"
TextSave = " 备份"
Key = ""
Object.Tag = ""
EndProperty
BeginProperty Panel2 {0713E89F-850A-101B-AFC0-4210102A8DA7}
Style = 5
Object.Width = 5292
MinWidth = 5292
TextSave = "21:16"
Key = ""
Object.Tag = ""
EndProperty
BeginProperty Panel3 {0713E89F-850A-101B-AFC0-4210102A8DA7}
Style = 6
Object.Width = 5292
MinWidth = 5292
TextSave = "2007-7-8"
Key = ""
Object.Tag = ""
EndProperty
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "隶书"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.CommandButton Command2
BackColor = &H00FFFF00&
Caption = "取消"
BeginProperty Font
Name = "隶书"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 4440
Style = 1 'Graphical
TabIndex = 4
Top = 3360
Width = 1455
End
Begin VB.CommandButton Command1
BackColor = &H00FFFF00&
Caption = "确定"
BeginProperty Font
Name = "隶书"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 1680
Style = 1 'Graphical
TabIndex = 3
Top = 3360
Width = 1455
End
Begin VB.DirListBox Dir1
Height = 1560
Left = 1560
TabIndex = 2
Top = 1320
Width = 4455
End
Begin VB.DriveListBox Drive1
Height = 300
Left = 1560
TabIndex = 1
Top = 840
Width = 4455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "请打开备份文件的目录:"
BeginProperty Font
Name = "隶书"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 600
TabIndex = 0
Top = 120
Width = 4215
End
End
Attribute VB_Name = "Form14"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
strSelDir = Trim(Dir1.Path)
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Private Sub Form_Load()
m_iBeginSaveTimer = 0
strSelDir = ""
Drive1.Drive = "d:"
Dir1.Path = "d:"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -