DCPROGRESS
Posted: Sat Mar 07, 2015 9:19 am
Hi Riger,
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:
I need it i.e for reading from a file with fread or while indexing a dbf. Is there any chance to realize it ?
I'm only working with modal windows.
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.