What's the name of a subform event?

B

Banaticus

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?
 
M

Marshall Barton

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top