|
|
|
|
|
Error 303: ambiguous control name
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. Specify the full name of the column by prefixing the column name with the name of the Table control. 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|