I have an array of tables(n). When I set up the capture event, the compiler does not like the indexing. Here I am trying to capture the cellclick event on table 12. The compiler does not like the (12) or anything indexed. It wants to see MyTables_CellClick(Col As Int, Row As Int)
Anyway of capturing the event and keeping my tables in an array?
B4X:
MyTables(12)_CellClick(Col As Int, Row As Int)
Anyway of capturing the event and keeping my tables in an array?