H h725 Active Member Licensed User Longtime User Feb 21, 2016 #1 Hello Everybody! In B4A I am working with table.size in different ways. Is there any chance to get something aquivalent in B4I ? I need to check if the table has no entries - table.size = 0 or has entries - table.size > 0. Thank you for your help Regards h725
Hello Everybody! In B4A I am working with table.size in different ways. Is there any chance to get something aquivalent in B4I ? I need to check if the table has no entries - table.size = 0 or has entries - table.size > 0. Thank you for your help Regards h725
JanPRO Well-Known Member Licensed User Longtime User Feb 21, 2016 #2 Hi, add the following sub to the Table class: B4X: 'Gets the size of the table Sub GetSize As Int Return Data.Size End Sub Jan Last edited: Feb 21, 2016 Upvote 0
Hi, add the following sub to the Table class: B4X: 'Gets the size of the table Sub GetSize As Int Return Data.Size End Sub Jan
H h725 Active Member Licensed User Longtime User Feb 22, 2016 #3 Thank you very much. It works great ! Upvote 0