PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → "Massive" ListDisplay
"Massive" ListDisplay
Débuté par Luigi Trevisant, 18 sep. 2007 18:18 - 1 réponse
Posté le 18 septembre 2007 - 18:18
Hi everybody,
is there a way to update all the combo-box controls linked to the same file if it has been modified?


Regards,
Luigi
Posté le 19 septembre 2007 - 10:16
>Hi everybody,

is there a way to update all the combo-box controls linked to the same file if it has been modified?


>

Regards,


>Luigi

When you give them the same name with a numeric extention, e.g. Combo_01, Combo_02 etc...

you can write a loop :

iComboNbr is int

FOR iComboNbr = 1 to 5

ListDisplay({"Combo_" + NumToString(iComboNbr,"02d"),indControl},taStart)

END

Leo.