📄 dialog.frm
字号:
VERSION 5.00
Begin VB.Form Dialog
BorderStyle = 3 'Fixed Dialog
Caption = "对话框标题"
ClientHeight = 3945
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 5085
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3945
ScaleWidth = 5085
ShowInTaskbar = 0 'False
Begin VB.DriveListBox Drive1
Height = 300
Left = 1680
TabIndex = 3
Top = 240
Width = 2415
End
Begin VB.DirListBox Dir1
Height = 1770
Left = 1680
TabIndex = 2
Top = 960
Width = 2415
End
Begin VB.CommandButton CancelButton
Caption = "取消"
Height = 375
Left = 2640
TabIndex = 1
Top = 3240
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "保存"
Height = 375
Left = 480
TabIndex = 0
Top = 3240
Width = 1215
End
Begin VB.Label Label2
Caption = "目录:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 360
TabIndex = 5
Top = 1080
Width = 855
End
Begin VB.Label Label1
Caption = "盘符:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 360
TabIndex = 4
Top = 240
Width = 735
End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -