PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → WD8 - Fixed number of rows in a table
WD8 - Fixed number of rows in a table
Started by Gianni Spano, Sep., 06 2005 2:12 AM - 2 replies
Posted on September, 06 2005 - 2:12 AM
Hello to all
Is there a table property or function to define a max number of rows during editing?
In my case i would create a table that must contains max 10 rows.
Tips and tricks are very appreciated.
Gianni
Posted on September, 06 2005 - 9:23 AM
Hello Gianni,
test this :
IF TableCount(Table) > 10 THEN TableSelectPlus(Table,TableSelect(Table)-1)
Christoph
Hello to all
Is there a table property or function to define a max number of rows during editing?
In my case i would create a table that must contains max 10 rows.
Tips and tricks are very appreciated.
Gianni
Posted on September, 06 2005 - 12:16 PM
Hello Luis & Chris
Thanks for thr responses.
Gianni
Hello Gianni,
test this :
IF TableCount(Table) > 10 THEN TableSelectPlus(Table,TableSelect(Table)-1)
Christoph
Hello to all
Is there a table property or function to define a max number of rows during editing?
In my case i would create a table that must contains max 10 rows.
Tips and tricks are very appreciated.
Gianni