|
|
|
|
|
InTSEMode (Function) In french: EnModeTSE Indicates whether the code is run: - from a computer in TSE mode or from a remote desktop.
- from a computer directly.
Reminder TSE (Terminal Server Emulation) lets you connect terminals to a server, i.e. use thin clients to access a session open on the server.
...
IF InTSEMode() = True THEN
...
ELSE
...
END
...
IF InTSEMode() = True THEN
WinDisableEffect(effectAnimation + effectTranslucentBorder + ...
effectDDW + effectBlur)
END
Syntax <Result>: Boolean - True if the code is run from an application run on a computer in TSE mode or via a remote desktop,
- False otherwise.
Remarks Function availability InTSEMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InTSEMode can be shared between several products without generating any compilation error. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|