If using the controls from the Forms toolbox you can reset the height and width properties, but the text size will not change. Record a macro of setting up a box to see the code.
Using from the controls toolbox you can change practically anything. The problem then is that these controls, being more complicated, are very bug ridden and give rise to all kinds of problems including complete file corruption. It seems you might be using several, which would make matters worse - so I do not recommend it.
Perhaps resizing the buttons without text and using titles in cells might work ? I often need a check column in a long list of items, when checkboxes would be unsuitable anyway, so I use VBA code like this, which needs a doubleclick in the cell. Format the cell font as Windings - which can be sized/formatted as required :-
[tt]
'--------------------------------------------------------
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Excel.Range, Cancel As Boolean)
Dim Tick As String
'- set to work in column 1 only
'- use Intersect for ranges
If Target.Column <> 1 Then Exit Sub
Tick = Chr(252) ' Wingdings tick
ActiveCell.Value = IIf(ActiveCell.Value = "", Tick, "")
End Sub
'-----------------------------------------------------
[/tt]
Regards
BrianB
Use CupOfCoffee to speed up all windows applications
================================