What msg function should be used to run showing variable counter for the user like the recno()/reccount() while do while !eof().
Ex:.
please wait..........processing record 35/2232.
What msg function should be used to run showing variable counter for the user like the recno()/reccount() while do while !eof().
Ex:.
please wait..........processing record 35/2232.
Hi,
I use MSGRUN()
You can see how to use this at SAMPLES\TESTMSG.PRG
Regards,
I suggest doing it in the message bar.
how can I put the code clock inside msgrun the run :
? recno()/reccnount()
or Even How can I use it with the message bar ?
cReccount:= reccount()
DO WHILE ! eof()
wndMain():oMsgBar:setMsg( "Processing record "+ trim(str(recno()))+"/"+cReccount )
Hola,
you can use
DEFINE DIALOG oDlg .....
ACTIVATE DIALOG oDlg.. NOWAIT
process ...... n/m
oDlg:end()