ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Examples
  • Using the BaseColor member of the Drawing class
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 1006: The member is not global: use: to access it
Reason
You are trying to access a member of the class with the syntax used to access a global member.

You are using the following syntax:

ClassName::MemberName


This syntax cannot be used to access a non-global member.
Correction
Use the proper syntax to access a non-global member of the class:
ClassName:MemberName
Examples

Using the BaseColor member of the Drawing class



Code triggering the error
Drawing::BaseColor

Possible correction
Use the correct syntax.
Drawing:BaseColor
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help