Uniface Underground -> Undocumented.Features.Only. |
Name | show |
Synopsis | show |
Use | Allowed only in form components |
Description | show This
new proc statement will display the current component and return to the
proc code, so it is posible, for example, to have a Merter or a Slider
widget displaying a percentage completed. Proc Statement.
This new proc statement will display the current component, usefull meters and progress bars. Only in 7.2.04
|
Example | meter_value = 100
setocc "entity",1 while ($status >= 0) ; perform procesing ... meter_value = meter_value - 1 show setocc ... endwhile |