PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Saving table filters
Saving table filters
Iniciado por guest, 28,jun. 2018 09:45 - 1 respuesta
Publicado el 28,junio 2018 - 09:45
Hi ,

Is it possible to save the table filters?

So user filters a column .He likes the filter and wants to save this filter for next time he signs in. The problem is next time he will be on an other computer

So I like to save all filters he has placed. But not the pcsoft way I like to save it int he DB
I ones saw a video on this made by " UNCLE PETE ", ofr some of the other US developers that publish the great video's on WX

Regards
RVDM
Publicado el 28,junio 2018 - 13:58
Hi

there are several ways to achieve that...

You can use initParameter to tell your program to store all the information into a specific xml file...

Once that is done, you can SAVE the content of the file in your DB each time you exit the program (or on a timer, or when the file is changed)...

And of course, you can start your program by reading the saved content and writing it in the file...

Best regards