ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
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 303: ambiguous control name
Reason
You are trying to handle a column of a Table control (based on a data file or populated programmatically). In the current window, there is already a column with the same name in multiple Table controls.
Correction
Specify the full name of the column by prefixing the column name with the name of the Table control.
Example
The "COL_PriceIOT" column is in the "TABLE_Order" and "TABLE_OrderLine" Table controls.
Code triggering the error
// -- Click code of "BTN_Calculate" button
COL_PriceIOT = COL_PriceBT*COL_VAT


Possible correction
Prefix the column name with the name of the Table control.
// -- Click code of "BTN_Calculate" button
TABLE_OrderLine.COL_PriceIOT = COL_PriceBT*COL_VAT
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help