[RESOLVED] VB6 More advanced Drive and Dir List Boxes Component
Is there any advanced component i can use in VB6 for Directory listings. Im using two components now, for directories (DirListBox) and for drives (DriveListBox). Is there any other where those two components are merged into one? Maybe something like tree view?
:)
Re: VB6 More advanced Drive and Dir List Boxes Component
you can use a common dialog component, with showopen method,
Re: VB6 More advanced Drive and Dir List Boxes Component
Can i make some changes on the dialog. For example disable those text fields on the bottom? Just so user cannot type in, those can be visible but disabled.
Edit: And i dont need files to bee seen, only directories.
Edit2: This is used to chose the installation directory.
Re: VB6 More advanced Drive and Dir List Boxes Component
Search for BrowseForFolder dialog, you should find tons of examples. It lets you choose any folder, optionally files too if you set the flag. It can have a button for creating new folders so it should be pretty much perfect for your needs.
Re: VB6 More advanced Drive and Dir List Boxes Component
Should i search for it on Google or VB6 Enterprise has it?
Re: VB6 More advanced Drive and Dir List Boxes Component
Re: VB6 More advanced Drive and Dir List Boxes Component
I must examine those first, i never used those :)
Thanx for replies.
Re: VB6 More advanced Drive and Dir List Boxes Component
Yes, this is exactly what i need. Thank you!