How do I resize the actual Forms checkbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top