how can i check which item of a listbox is checked??
because i have to work on with this information....
please help me
thx alex
Printable View
how can i check which item of a listbox is checked??
because i have to work on with this information....
please help me
thx alex
You mean selected?Quote:
Originally posted by alexschiefert
how can i check which item of a listbox is checked??
because i have to work on with this information....
please help me
thx alex
loop through the items and check the .selected property. Those set to true are selected (multi-select listbox). Single select listbox, check the property ListIndex as it should be something other than -1. Then use .column(0) to retrieve the first column (usually the hidden ID of the row.
Vince