awful window-appearance

storzi

Member
Hi,

when I have to display a window (.w - file) and build several
work-tables / temp-tables or big Combo-Boxes during program-initialisation,
this can take a few seconds and meanwhile the window looks awful.
That is to say miscellaneous scopes are complete white till the
program-initialisation is completed.

Is there a workaround to make the window looks pretty during the
program-initialisation?

Thanks for all answers and excuse my bad english.

Greets
Storzi
 
set the session:immediate-display to true, and reset to false after initialization completes.

<quote>
If the IMMEDIATE-DISPLAY attribute is TRUE, Progress updates the display for every I/O operation, including DISPLAY statements. If set to FALSE, Progress does not update the display until a statement blocks for input, such as an UPDATE statement. FALSE is the default setting. A TRUE setting provides more accurate screen displays during long display loops at the price of slower performance.
</quote>
 
efficiency.

theres sense in refreshing display at certain points and not after every i/o operation, in gui.
 
Back
Top