I have a form with 80 check boxes with the names assigned as ChkBx1, Chkbx2, Chkbx3 through Chkbx80. I would like to use a variable for the checkbox name to check the value of the check box. Such as:

[VBA]
For i = 1 to 80
CurrentChkBox = ?ChkBx? & i
CurVal = UserForm.CurrentChkBox
Next
[/VBA]

This will not work since CurrentChkBox is a string and not a control. How can I use a variable as a control name?
Thanks in advance