Board index » cppbuilder » ComboBox showing drives
Renan
![]() CBuilder Developer |
Renan
![]() CBuilder Developer |
ComboBox showing drives2006-08-02 02:13:29 AM cppbuilder9 How do I set a ComboBox to show system drives ( C, D, E...)? How do I do: Select a drive (C, for example) in the ComboBox and automaticaly show in a ListBox all Folders in it. Select a folder in the ListBox and show in another ListBox all files in it. Thanks in advance Renan |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2006-08-02 05:08:50 AM
Re:ComboBox showing drives
"Renan" < XXXX@XXXXX.COM >wrote in message
QuoteHow do I set a ComboBox to show system drives ( C, D, E...)? GetLogicalDriveStrings() function. QuoteHow do I do: Select a drive (C, for example) in the ComboBox FindNextFile() functions to loop through the files of the selected drive, adding them to the ListBox one at a time. QuoteSelect a folder in the ListBox and show in another ListBox |