ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • Attempt of inheritance in a structure
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 1032: The inheritance is not allowed in a structure
Reason
You are trying to define an inheritance in the definition of a structure. The inheritance is not allowed in a structure.
Correction
Delete the inheritance syntax.
Example

Attempt of inheritance in a structure

Code triggering the error
Coord is Structure
PosX is int
PosY is int
END
 
ObjectSize is Structure
  À coord object
Height is int
Width is int
END
Possible correction
Delete the inheritance syntax.
Coord is Structure
PosX is int
PosY is int
END
 
ObjectSize is Structure
Height is int
Width 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