first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

VB Code: Synchronizing the DriveListBox with the DirListBox and FileListBox Controls

Private Sub fsDevice_Change() 'fsDevice is the DriveListBox. 'fsRoot is the DirListBox. 'fsFile is the FileListBox. With Me .fsRoot.Path = fsDevice.List(.fsDevice.ListIndex) .fsFile.Path = .fsRoot.Path End With End Sub

Private Sub fsRoot_Change() With Me .fsFile.Path = .fsRoot.Path End With End Sub

mod date: 1999-03-01T21:47:44.000Z