Indicates whether the code is run in a service.
// Code run in a service?
IF InServiceMode() = True THEN
// Process to run in the service
...
ELSE
// Process to run in a regular application
...
END
// Trying to run the executable of a service
IF InServiceMode() = False THEN Error("This program is a service," + ...
" please install it using the proper procedure")
Syntax
<Result> = InServiceMode()
<Result>: Boolean
- True if the code is run inside a service,
- False otherwise.
Remarks
Availability of the function
InServiceMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InServiceMode can be shared between several products without generating any compilation error.
Running processes containing compilation errors
By default, the security mechanism of WLanguage is triggered only if the line containing the compilation error is run.
For example, if a function not allowed in the current product is found in a loop (IF), the security mechanism of WLanguage will be triggered only if the line containing this function is run.
Business / UI classification: Neutral code