?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 3 'Fixed Dialog
Caption = "Form1"
ClientHeight = 3225
ClientLeft = 45
ClientTop = 330
ClientWidth = 5580
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 3225
ScaleWidth = 5580
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.FileListBox File1
Height = 2790
Left = 2880
TabIndex = 2
Top = 240
Width = 2655
End
Begin VB.DirListBox Dir1
Height = 2190
Left = 240
TabIndex = 1
Top = 720
Width = 2535
End
Begin VB.DriveListBox Drive1
Height = 300
Left = 240
TabIndex = 0
Top = 240
Width = 2535
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Private Sub Form_Load()
Drive1.Enabled = True
Dir1.Enabled = True
File1.Enabled = True
File1.Pattern = "*.exe"
Drive1.Drive = "c:\"
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -