checkbox tag property

  • Thread starter Thread starter stan
  • Start date Start date
S

stan

I have a group of textboxes -36 in all. How can I change the tag property
so when checked, each box returns its number. 1 for chk1, 4 for chk4, etc.

I can't seem to make this work in the tag property--where I assume it's done.
 
If Me.chk1 = True Then
Debug.Print Me.chk1.Tag
End If

You can put the above in a loop to check them all.
 
Back
Top