Problem with Table module. just 2 columns

mrjaw

Active Member
Licensed User
Longtime User
Hi!
I have a weird problem using Table module. When I define 2 columns everything is fine but if I add another column I get an error about initialization.

I have attached the test project I have 2 activities and in the second layout is the table.

Any cluees?
 

Attachments

  • TableActivity.zip
    12.5 KB · Views: 143

Mahares

Expert
Licensed User
Longtime User
This line in tabla activity module:
B4X:
TableProd.Initialize(Me, "TableProd", 2)
should be:
B4X:
TableProd.Initialize(Me, "TableProd", 3)  'since you have 3 columns.
 
Upvote 0
Top