home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form FileControls
- Caption = "File Control Demo"
- ClientHeight = 3105
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5460
- LinkTopic = "Form1"
- ScaleHeight = 3105
- ScaleWidth = 5460
- StartUpPosition = 3 'Windows Default
- Begin VB.FileListBox File1
- Height = 2820
- Left = 2505
- TabIndex = 2
- Top = 120
- Width = 2835
- End
- Begin VB.DirListBox Dir1
- Height = 2340
- Left = 135
- TabIndex = 1
- Top = 615
- Width = 2175
- End
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 135
- TabIndex = 0
- Top = 150
- Width = 2190
- End
- Attribute VB_Name = "FileControls"
- 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
-