one option .. place another checkbox or button titled "Select All" ... then
B4X:
Sub chkCheckAllItems_CheckedChange(Checked As Boolean)
For i= 0To clv3.GetSize -1'CustomListView dimmed as clv3Dim pnl As Panel
pnl = clv3.GetPanel(i)
Dim chk As CheckBox
chk= pnl.GetView(2) 'presuming checkbox is 3rd view in panel (same as example)
chk.Checked = TrueNextEndSub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.