How do I resize the actual Forms checkbox

N

Nel

I see many questions on how to create a checkbox, but resizing the the
checkbox itself seems to be my problem. Can't figure it out.

I notice there was another request for this problem but it went unanswered

hopefully I have better luck.
 
R

Ron de Bruin

Hi Nel

You can change the Top,Width,Left,Height

With Range("c3")
ActiveSheet.CheckBoxes.Add(Top:=.Top, Width:=.Width, _
Left:=.Left, Height:=.Height).Select
End With
 
Top