For the life of me, I cant figure out how to get how many table items I have..
Count:=ATableView.Sections[0].Count etc??
Can you help?
Hi Gordon
TotalCount := 0 for I := 0 to ATableView.Sections.Count - 1 do TotalCount := TotalCount + ATableView.Sections[0].TableItems.Count ;
Regards
hmm, I tried that before, didnt work.. I'll try it again. maybe a typo on my part.
The correct code is:
TotalCount := 0; for I := 0 to ATableView.Sections.Count - 1 do TotalCount := TotalCount + ATableView.Sections[i].TableItems.Count;
Log in to post a comment.
For the life of me, I cant figure out how to get how many table items I have..
Count:=ATableView.Sections[0].Count etc??
Can you help?
Hi Gordon
Regards
hmm, I tried that before, didnt work.. I'll try it again. maybe a typo on my part.
Hi Gordon
The correct code is:
Regards