ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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

Declaring a structure that uses two members with the same name

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


Possible correction
Rename one of the members.
Coord is Structure
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