ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • Using the * character in the ListAdd function
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 809: The * character cannot be used as mandatory parameter in a function
Reason
You are trying to use the * character to replace a parameter in a WLanguage function. This parameter is mandatory and it cannot be replaced by the * character.
Correction
Replace the * character by the value of the parameter.
Example

Using the * character in the ListAdd function

Code triggering the error
ListAdd(*, "Vince")
Possible correction
Use the name of the list.
ListAdd(LIST_List1, "Vince")
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help