View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
gmcnaugh[_2_] gmcnaugh[_2_] is offline
external usenet poster
 
Posts: 3
Default Deselect Command Button by Selecting another Command Button

Hi,

I am attempting to automaticlly deselect a focused comand button when
another command button is selected in Excel. I have tried using the
following code:

Private Sub booOVERREAD_Click()
If booOVERREAD = True Then
booUNDERREAD = False
End If

I am a relative novice when it comes to VBA so any help would be
gratefully received.

I thank you.