Q qey Member Mar 8, 2022 #1 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
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
Alexander Stolte Expert Licensed User Longtime User Mar 8, 2022 #2 qey said: I want to set AsCheckbox only can be checked one time when the item_type = 1. Any Idea ? Click to expand... B4X: If "item_type" = 1 Then ASCheckbox1.Enabled = False End If ? Upvote 0
qey said: I want to set AsCheckbox only can be checked one time when the item_type = 1. Any Idea ? Click to expand... B4X: If "item_type" = 1 Then ASCheckbox1.Enabled = False End If ?