📄 frmdl.frm
字号:
VERSION 5.00
Begin VB.Form frmDL
Caption = "浏览文件夹"
ClientHeight = 4005
ClientLeft = 3615
ClientTop = 2340
ClientWidth = 4575
Icon = "frmDL.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
ScaleHeight = 4005
ScaleWidth = 4575
StartUpPosition = 1 '所有者中心
Begin VB.DriveListBox Drive
Height = 300
Left = 240
TabIndex = 3
Top = 600
Width = 4095
End
Begin VB.CommandButton CmdCancel
Caption = "取消"
Height = 375
Left = 3600
TabIndex = 2
Top = 3480
Width = 735
End
Begin VB.CommandButton CmdOK
Caption = "确定"
Enabled = 0 'False
Height = 375
Left = 2520
TabIndex = 1
Top = 3480
Width = 735
End
Begin VB.DirListBox Dir
Height = 2190
Left = 240
TabIndex = 0
Top = 960
Width = 4095
End
End
Attribute VB_Name = "frmDL"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdCancel_Click()
Unload Me
End Sub
Private Sub CmdOK_Click()
frmSetParameter.txtTacitlySaveFolder.Text = Dir.Path
Unload Me
End Sub
Private Sub Dir_Change()
CmdOK.Enabled = True
End Sub
Private Sub Drive_Change()
Dir.Path = Drive.Drive
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -