ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • Handling a non-global method in a global method
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 1021: The method of the class is not global
Reason
You are trying to use a non-global method from a global method.
Reminder: The global methods can be handled from a global method only (the non-global methods cannot be handled).
Correction
Two possibilities:
  • Switch the method to global.
  • Handle a global method.
Example

Handling a non-global method in a global method

Code triggering the error
GLOBAL procedure Drawing::Destroy()
// Frees a list of drawings
pDrawing, pAux are objects Drawing dynamic
Drawing::Place()
// Free the object from the last one
pDrawing=::pLast
WHILE pDrawing<>Null
// Store the current drawing
pAux=pDrawing
// Move forward in the linking
pDrawing=pDrawing:pPrevious
// Free the current drawing
delete pAux
END
::pLast = Null
Possible correction
Define the Move method as a global method.
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help