ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • Availability of the function
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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: The TSE (Terminal Server Emulation) is used to plug the terminals onto a server, which means using light clients to access a session opened on the server.
Example
// Code run from TSE?
...
IF InTSEMode() = True THEN
// Procedure run from TSE
...
ELSE
// Standard case
// Process to perform
...
END
// Code run from TSE: disabling the unsupported effects
...
IF InTSEMode() = True THEN
WinDisableEffect(effectAnimation + effectTranslucentBorder + ...
effectDDW + effectBlur)
END
Syntax
<Result> = InTSEMode()
<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.
AndroidAndroid Widget Java Always corresponds to False.
WEBDEV - Browser code This parameter always corresponds to False.
Remarks

Availability of the function

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
Component: wd290vm.dll
Minimum version required
  • Version 12
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help