ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Examples
  • An Integer variable uses a size that is not recognized
  • A Real variable uses a size that is not recognized
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 108: The size of the variable is not allowed
Reason
You are using an integer variable or a real variable by specifying a specific size. This size is not available for this type of variable.
The available sizes for the integer type are:
  • 1 byte
  • 2 bytes
  • 4 bytes
  • 8 bytes
The available sizes for the real type are:
  • 4-byte real
  • 8-byte real
Correction
Use one of the available sizes for the integer variable or for the real variable.
Examples

An Integer variable uses a size that is not recognized

Code triggering the error
MyInteger is 3-byte int
Possible correction
Use a size that is recognized by the WLanguage.
MyInteger is 2-byte int

A Real variable uses a size that is not recognized

Code triggering the error
Price is 2-byte real
Possible correction
Use a size that is recognized by the WLanguage.
Price is 4-byte real
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help