How to select all?

annir

Active member
Joined
Sep 1, 2008
Messages
32
Programming Experience
Beginner
Hi Guys,

I have a standard toolbar then if click the Select All icon, I want that all the folders from the Dirlistbox and Filelistbox would be selected.

Can I ask if someone have an idea on this one?

thanks!

annir
 
Hello.

I don't know the control but after having a look at it it might work this way (pseudo)
VB.NET:
For Each Item In DirListBox
      DirListBox.SelectedItem[b]s[/b].Add(Item)

Bobby
 
Back
Top