Android Question AScheckbox

qey

Member
Hi all. I need your help. I want to set AsCheckbox only can be checked one time when the item_type = 1. Any Idea ?

So far this is the code
B4X:
    Dim cb As String
    Dim checkbox As ASCheckbox = Sender
    If Checked = True Then
        cb="1"
    Else
        cb="0"
    End If
 
Top