ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous WINDEV functions
  • Sharing components and classes between WINDEV and WEBDEV
  • Running processes containing compilation errors
  • Function availability
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
InWebMode (Function)
In french: EnModeWeb
Indicates whether the current process is run:
  • from a WINDEV executable.
  • from the WEBDEV runtime engine (AWP).
Note For code shared between a WINDEV application and a WEBDEV site (class code, Component, etc.), this function lets you know the execution mode, and launch the appropriate processing.
AndroidAndroid Widget This function has no effect in this version.
Example
// Mode de lancement ?
IF InWebMode() = True THEN
	// Traitement lancé depuis le moteur d'exécution de WEBDEV : 
	// Appel de la procédure "WebEnvoiePage"
	WebEnvoiePage("Info.htm")
ELSE
	// Traitement lancé depuis un exécutable WINDEV 
	// Affichage d'une boîte de dialogue
	Info("Action réalisée")
END
Syntax
<Result> = InWebMode()
<Result>: Boolean
  • True if the code is run by the runtime engine of WEBDEV,
  • False otherwise.
AndroidAndroid Widget This parameter always corresponds to False.
Remarks

Sharing components and classes between WINDEV and WEBDEV

InWebMode allows you to easily share classes or components developed in WLanguage between a WEBDEV website and a WINDEV application. Depending on whether the application is run in Web mode or not, different functions can be used, specific to the current application.

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.

Function availability

InWebMode can be used in all IDEs to allow for cross-platform code. Functions or procedures that use InWebMode can be shared between several products without generating any compilation error.
Business / UI classification: Neutral code
Component: wd300dllexe.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help