Kbase P108209: What is and how to use UIB_IS_RUNNING?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  26/08/2005 |
|
Status: Unverified
GOAL:
What is UIB_IS_RUNNING?
GOAL:
How to use UIB_IS_RUNNING?
FIX:
UIB_is_running is the preprocessor name that is defined if the
program is being run directly from the UIB. If it is run from the
editor then the UIB_is_running is not defined.
Progress developers may find it useful to use code conditionally
based on whether or not they have run the code from the UIB or
by some other means. One way to do this is to check to see if
the UIB_is_running preprocessor name has been defined.
&IF DEFINED (UIB_is_running) &THEN message "UIB is running".
&ELSE message "UIB is not running".
&ENDIF