PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WB19] - Need a "busy" notice
[WB19] - Need a "busy" notice
Iniciado por guest, 14,sep. 2015 18:38 - 4 respuestas
Publicado el 14,septiembre 2015 - 18:38
Hi All -

I have some tables that take quite a while to load and want to let the user know that the system both received their instruction to load the table and that the system hasn't frozen. Occasionally, I see a "busy" icon show up here and there, but how can I force one all the time? I know there are some animated gifs and such in the catalog. But I'm not sure where to put or what code to use to initiate.
Publicado el 14,septiembre 2015 - 21:55
Hi,

maybe you can use toastdisplay()
Publicado el 15,septiembre 2015 - 06:22
Publicado el 15,septiembre 2015 - 08:54
From http://help.windev.com/en-US/…

HourGlass() // Display the hourglass
ProcProcess() // Long process
HourGlass(False) // Restore the initial pointer

Note: The window is inactive as long as the hourglass is displayed: the user cannot click in the window.
Publicado el 15,septiembre 2015 - 09:24
HourGlass() function is not available in WebDev

You can display a suitable image before loading your table and hide it once it's complete.

Regards,
Bart