someone
09-05-2003, 03:28 AM
Hi all..
I have a list of files that i need to display and was wondering if there is sucha control that allows you to list them (like the listview control) but has a check box type of thing that allows the user to select the file.
Thanks,
Someone
Hi all..
I have a list of files that i need to display and was wondering if there is sucha control that allows you to list them (like the listview control) but has a check box type of thing that allows the user to select the file.
Thanks,
Someone
You mean like an listview :D. Listview has an checkbox :D.
lst = listview
lst.Checkboxes = true
lst.GridLines = True
lst.FullRowSelect = True
lst.MultiSelect = true
lst.LabelEdit = lvwManua
someone
09-05-2003, 03:49 AM
Oh real...
So it does.. sorry people.. thanks for your help irri..
Sorry..
Oh real...
So it does.. sorry people.. thanks for your help irri..
Sorry..
Allways a pleasure
No need for apologize
Chris J Locke
09-05-2003, 05:29 AM
The bog standard listbox control also allows checkboxes (set the style property) if you don't want to use the listview control...