AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Errores / Errores WLanguage
  • 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
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local