is there a way to reference a control (button or checkbox) by using a string for its name instead of an integer?

I want to loop through a recordset with names of controls and add or remove them based on values in the recordset.

I am converting from vba where this worked:
CHKNAME = "chk" & rc![Report]
Set ctl = FRM.Controls(CHKNAME)

thanks