Devv Active Member Licensed User Longtime User Aug 11, 2016 #1 Hello all i have a string that hold a checkbox name B4X: string1 = "mycheckbox_1" how can i use the value of string1 to disable the check box ? i man something like B4X: stringtoobject(mycheckbox1).disabled = true is that possible ?
Hello all i have a string that hold a checkbox name B4X: string1 = "mycheckbox_1" how can i use the value of string1 to disable the check box ? i man something like B4X: stringtoobject(mycheckbox1).disabled = true is that possible ?
DonManfred Expert Licensed User Longtime User Aug 11, 2016 #2 Devv said: is that possible ? Click to expand... no You need to build for ex. a map to map the name with the object. Then you can get the object from the map using the name. Now you can disable.... Upvote 0
Devv said: is that possible ? Click to expand... no You need to build for ex. a map to map the name with the object. Then you can get the object from the map using the name. Now you can disable....