B4J Question Checkbox Value

ElliotHC

Active Member
Licensed User
I have a save config routine which looks at the state of some checkboxes along with some textfield values and saves them to a file.

Text is saving fine but for some reason I can't seem to get the checkbox value.. It always returns false even when it's ticked.

Elsewhere in my code I'm using an if statement e.g.


B4X:
If Checkbox1.checked = True then
'DO CODE HERE
End If
This is working fine.

But when I do this


B4X:
Writer.Writeline("CheckBox Value," & CheckBox1.Checked)
I always write false
 

ThRuST

Well-Known Member
Licensed User
Longtime User
@ElliotHC You never mentioned how you load your settings to set the checkbox state. It is recommended that you load the actual value on a new line or else the remark will be used as the value. That's why it always remains False. Always provide enough information so that others can understand what you're doing :)
 
Upvote 0
Top