home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- Caption = "Drive And File Information"
- ClientHeight = 3195
- ClientLeft = 1980
- ClientTop = 2670
- ClientWidth = 5640
- LinkTopic = "Form2"
- ScaleHeight = 3195
- ScaleWidth = 5640
- Begin VB.FileListBox File1
- Height = 2820
- Left = 2640
- TabIndex = 2
- Top = 120
- Width = 2415
- End
- Begin VB.DirListBox Dir1
- Height = 2340
- Left = 120
- TabIndex = 1
- Top = 600
- Width = 2295
- End
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 2295
- End
- Attribute VB_Name = "Form2"
- 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()
- ' drive1_Change
- On Error GoTo drv1:
- Dir1.Path = Drive1.Drive
- Exit Sub
- drv1:
- Drive1.Drive = Dir1.Path
- Exit Sub
- End Sub
-