ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • A global variable is declared in the click code of a button found in the "WIN_Menu" window
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
Error 101: Declaration of global variable not allowed
Reason
You are trying to declare a global variable in a process where this type of declaration is not allowed.

Reminder: The global variables must be declared in:
  • The initialization code of the project in order to be used in all the processes of the project (code of project, code of windows and code of controls).
  • The opening code of a window in order to be used in all the processes of the window (code of the window and code of the controls found in the window).
  • The load code of the page in order to be used in al the browser processes of the page (code of the page and code of the controls found in the page).
Correction
Declare your global variable in the appropriate code.
Example

A global variable is declared in the click code of a button found in the "WIN_Menu" window

Code triggering the error
// -- Click code of BTN_Display
GLOBAL
Result_Read is boolean
Possible correction
Declare the global variable in the "Global declarations" process of the window.
// -- Global declarations of WIN_MENU
GLOBAL
Result_Read is boolean
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help