If your checkbox is named CheckBox1 then you can use the height and width properties to set the sizes. e.g. when you click the checkbox you want to re-size it. use the code below.
Private Sub CheckBox1_Click()
CheckBox1.Height = 30
CheckBox1.Width = 100
End Sub