
I'm trying to write a Progress Bar to display when exporting data. I have it written Like this currently. However It only goes to 1% then stops. If i Change the 100 to 1000 it goes to 10% then the process is done.
REPEAT ...
diagProgressWindow.OPEN('Exporting Position Refrences @1@@@@@@@@@@@@');
intAmtToprocess := recBOMPositioningTableLines.COUNT; // ??
intAmtProcessed +=1;
intPercentcomplete := ROUND(intAmtprocessed / intAmtToprocess* 100,1);
(Do other stuff )
diagProgressWindow.UPDATE(1,intPercentcomplete);
UNTIL...
*This post is locked for comments
I have the same question (0)