I am adding checkboxes to an array via a tag, using this function:
chkScoreBoard = Array As CheckBox(chkScoreBoard1, chkScoreBoard2, chkScoreBoard3, chkScoreBoard4, chkScoreBoard5)
Now, How do I handle the checkedchange? I cant get it to work.
I keep getting "parameter name cannot hide global variable name" error.
any ideas?
chkScoreBoard = Array As CheckBox(chkScoreBoard1, chkScoreBoard2, chkScoreBoard3, chkScoreBoard4, chkScoreBoard5)
Now, How do I handle the checkedchange? I cant get it to work.
B4X:
Sub chkScoreBoard_CheckedChange(checked As Boolean)
Log("CLICK: " & checked)
End Sub
I keep getting "parameter name cannot hide global variable name" error.
any ideas?