PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → [WD20] TableFix of a row
[WD20] TableFix of a row
Débuté par Yaku, 21 oct. 2016 17:54 - 1 réponse
Posté le 21 octobre 2016 - 17:54
Hi all,
Is there a way to lock a row of a table (the first one, if possible) and always show it even if the user scrolls down?
TIA
Posté le 23 octobre 2016 - 23:10
Try this code in "Selecting a row" event of your table:

IF TableSelect(MySelf) > 1 THEN TableSelectPlus(MySelf,1)

JJM