What's the name of a subform event?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If the subform control is:
Me.Class_Subform.Form.NavigationButtons = False
And I want to do something along the lines of:

Private Sub Me_Class_Subform_Form_LostFocus()
' Put stuff here
End Sub

What's the name of that subform event?
 
Banaticus said:
If the subform control is:
Me.Class_Subform.Form.NavigationButtons = False
And I want to do something along the lines of:

Private Sub Me_Class_Subform_Form_LostFocus()
' Put stuff here
End Sub

What's the name of that subform event?


I don't think the LostFocus event is useful, Without knowing
what you are trying to accomplish, you might try the Exit
event of the subform control instead.
 
Back
Top