A family of Microsoft relational database management systems designed for ease of use.
First, I would use a different naming convention. I would use cmdHelpassociatedcontrolThere is noi need to number them that I see.
Second, I would set the Tag property of each of those controls to simply Help. So this identifies them as Help buttons.
Your function would look something like this
Public Sub ShowHideHelp(frm as Form)
Dim ctl As Control
For each ctl in frm.Controls
If ctl.Tag = "Help"
If ctl.Visible Then
ctl.Visible = False
Else
ctl.Visible = True
End If
End If
Next ctl
End Sub
You would call this sub with the line
Call ShowHideHelp(Screen.ActiveForm)
Disclaimer: this code is off the top of my head and untested. It may not be syntactically correct, but should give you the idea.