【VB开源代码栏目提醒】:以下是网学会员为您推荐的VB开源代码-资源管理器元件的连接.frm,希望本篇文章对您学习有所帮助。
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '╰参箇砞
Begin VB.FileListBox File1
Height = 2610
Left = 2040
TabIndex = 2
Top = 240
Width = 2055
End
Begin VB.DirListBox Dir1
Height = 1980
Left = 240
TabIndex = 1
Top = 840
Width = 1455
End
Begin
VB.DriveListBox Drive1
Height = 300
Left = 240
TabIndex = 0
Top = 240
Width = 1575
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub