Bug? Warnings #10 and #11 From CustomTableView Layouts

RichardN

Well-Known Member
Licensed User
Longtime User
My project has a number of simple layouts that are loaded into CustomTableView Cells.

Some identically named views are common to many cells, some are uniquely named and refer to only one cell. All the views are referenced by code in Sub Process_Globals after using the 'Generate members' feature.

The code runs fine but I get many warnings #10 & #11 thus:

Variable 'lblSectionTitle' was not initialised. (Warning #11)
Variable 'txtTextItem' was not initialised. (Warning #11)
Variable 'btnCalculate' is never assigned any value (warning #10)
Variable 'btnSetDefaults' is never assigned any value (warning #10)
Variable 'switchDayNite' was not initialised. (Warning #11)
Variable 'imgArrowButton' was not initialised (Warning #11)​

The uniquely named views need to be referenced to expose their singular events. The arrays of commonly named views need to be referenced to capture activity using the NativeObject method.

Is the IDE intended to behave in this way ?
 
Top