I'm not the best to answer this but how about a For Next loop.
I have controls called FR1, FR2, FR3, FR4, FR5. To loop through and change them, I use this;
For i = 1 To 5
Me.Controls("FR" & i).Enabled = False
*more code here
Next i
Don't forget that you'll need code to enable them also.