Are there any collections in kodular just as there are in VBA, eg "collection of controls" etc

i want to create a command similar to the following in kodular (note this script is for VBA excel)

for each control in screen1.controls
n=0
if control.type=checkbox then
n=n+1
control.name = “myCheckbox” & n+1
End if
next

is it possible or impossible

1 Like

If I understood correctly, you can use the Any Component blocks. In your case you should create a list of the Checkbox components you want to handle, and then with the Any Checkbox blocks you can work on them. There are many tutorials on it