DCPROGRESS is a powerful function to untertain the user while proceeding a time-consuming process.
I would like to use it while proceeding a function like this:
Code: Select all
@ 4,5 DCPROGRESS oProgress ;
SIZE 60,1.5 ;
MAXCOUNT RecCount();
COLOR GRA_CLR_BLUE ;
PERCENT ;
EVERY Int(RecCount()/100)
DCREAD GUI TITLE 'My Test Dialog' ;
PARENT @oDialog ;
FIT ;
EXIT
oDialog:show()
example() WHILE _Progress( oProgress )
function example
....
I'm only working with modal windows.