PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → WD 22
WD 22
Started by RenkoAllard, Feb., 22 2018 11:58 AM - 2 replies
Posted on February, 22 2018 - 11:58 AM
Hi,

Maybe a bit stupid question but Im still gonne ask:

how canb I check if a table with breaks is expanded or collapsed? I want to make a buton witch expands or colllapese the whole table

Thanks
Posted on February, 22 2018 - 2:07 PM
Hello Renko

There is a ..Collapsed property that you can use for that.

Regards
Al
Posted on February, 22 2018 - 2:20 PM
Hello Renko,

I use a boolen flag set to false at opening and have a button to expand or collapse all

IF bExpand THEN bExpand = False TableCollapseAll(TABLE_OugInstalls) ELSE bExpand = True TableExpandAll(TABLE_OugInstalls) END
DW