?? frmopendir.frm
字號(hào):
VERSION 5.00
Begin VB.Form frmopendir
Caption = "請(qǐng)打開備份文件的目錄"
ClientHeight = 4290
ClientLeft = 60
ClientTop = 450
ClientWidth = 4380
LinkTopic = "Form1"
ScaleHeight = 4290
ScaleWidth = 4380
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 3915
Left = 0
TabIndex = 0
Top = 0
Width = 3915
Begin VB.DirListBox Dir1
Height = 1140
Left = 210
TabIndex = 4
Top = 810
Width = 2775
End
Begin VB.DriveListBox Drive1
Height = 300
Left = 210
TabIndex = 3
Top = 510
Width = 2775
End
Begin VB.CommandButton cmdSure
Caption = "確定"
Default = -1 'True
Height = 345
Left = 300
TabIndex = 2
Top = 2100
Width = 1155
End
Begin VB.CommandButton Command1
Cancel = -1 'True
Caption = "取消"
Height = 345
Left = 1680
TabIndex = 1
Top = 2100
Width = 1155
End
Begin VB.Label Label1
Caption = "請(qǐng)打開備份文件的目錄:"
Height = 285
Left = 240
TabIndex = 5
Top = 240
Width = 2415
End
End
End
Attribute VB_Name = "frmopendir"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public strSelDir As String
Private Sub cmdSure_Click()
strSelDir = Trim(Dir1.Path)
Unload Me
End Sub
Private Sub Command1_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 = "c:"
Dir1.Path = "c:"
End Sub
Private Sub Form_Unload(Cancel As Integer)
m_iBeginSaveTimer = 0
End Sub
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -