Use this code as a function that returns True Or False
Function ValidatePeriod()
ValidatePeriod = True
If IsNull(Me.Combo1) Then
MsgBox "You must select a Month"
Combo1.SetFocus
ValidatePeriod = False
End If
End Function
On the OnClick event of each button call the function, if it returns True
continue with the code, else exit without execute
If ValidatePeriod = True Then
Your code
End If

Signature
Good Luck
BS"D
> I am trying to write a simple procedure to be sure a selection has been made
> from a combo box. I would like to call the procedure from the click event of
[quoted text clipped - 17 lines]
> event, without allowing the chance to select a choice. This code works fine
> if I put in each procedure, which I am trying to avoid doing.