Compiled application

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 6.0


Compiled application Boolean

ParameterTypeDescription
This command does not require any parameters
Function resultBooleanCompiled (True), Interpreted (False)

Description

Compiled application tests whether you are running in compiled mode (True) or interpreted mode (False).

Example

In one of your routines, you include debugging code useful only when you are running in interpreted mode, so surround this debugging code with a test that calls Compiled application:

      ` ...
   If (Not(Compiled application))
      ` Include debugging code here
   End if
      ` ...

See Also

IDLE, Undefined.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next