I have created 44 buttons named Button1 to Button44 with the designer.
Is it possible to change a property of a button depending on a variable?
For example if I make a code like this to disable all 44 buttons:
Apperently this is not correct, but is there a way for "ButtonX"?
Is it possible to change a property of a button depending on a variable?
For example if I make a code like this to disable all 44 buttons:
B4X:
For X = 1 to 44
ButtonX.Enabled = False
Next
Apperently this is not correct, but is there a way for "ButtonX"?