II s there a better way to clean up the code below?
When command button 1 is clicked, commandbutton 2-4 and togglebutton 1 should be turned off (false).
Private Sub CommandButton1_Click()
With ToggleButton1
If .Enabled = True Then .Enabled = False Else .Enabled = True
End With...