ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • Declaring a class that uses two members with the same name
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 1038: This member already exists in the class
Reason
You are declaring a class that uses two members with the same name. This error can be caused by a typo in the name of a class member for example.
Correction
Rename or delete the extra member.
Example

Declaring a class that uses two members with the same name

Code triggering the error
Coord is Class
PosX is int
PosX is int
END


Possible correction
Rename one of the members.
Coord is Class
PosX is int
PosY is int
END
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help