PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WEBDEV 2024 → Un-Selecting Elements from a ListBox
Un-Selecting Elements from a ListBox
Iniciado por Mail, 16,feb. 2008 02:40 - 1 respuesta
Publicado el 16,febrero 2008 - 02:40
Hi

How can I un-select items in a multi-select listbox?

I have used:

FOR ALL SELECTED ROW n OF LISTBOX
tmp = LISTBOX[n]

to read the selected items, and it works ok.

Now I need to be able to un-select the selected items in code?



Many Thanks

Shahine
Publicado el 17,febrero 2008 - 19:16
Hello Shahine,

FOR ALL SELECTED ROW n OF LISTBOX
ListSelectMinus(ListBox, n)

To un-select all rows of your listbox:
ListSelectMinus(ListBox)

Christian


How can I un-select items in a multi-select listbox?

I have used:

FOR ALL SELECTED ROW n OF LISTBOX
tmp = LISTBOX[n]

to read the selected items, and it works ok.

Now I need to be able to un-select the selected items in code?



Many Thanks

Shahine