I'm sure this is probably a simple task. However, I have had no luck trying to find a short solution to my problem. I am creating a spreadsheet that requires multiple checkboxes. The standard checkboxes are way too small for my liking. Therefore, I am using the Label function utilizing the Wingdings font to get what I want. I would like to apply the same code to all my labels. However, when i copy a Label and paste it, it does not not copy the code. Can someone let me know how I can make this code work for all Labels without entering it seperatly for each one (Loop, etc)? Here is the current Code I am using:
Private Sub Label1_Click()
If Label1.Caption = Chr(252) Then
Label1.Caption = Chr(32)
Else
Label1.Caption = Chr(252)
End If
End Sub
Thank you for your help.
Jason
Private Sub Label1_Click()
If Label1.Caption = Chr(252) Then
Label1.Caption = Chr(32)
Else
Label1.Caption = Chr(252)
End If
End Sub
Thank you for your help.
Jason