Open subforms?

  • Thread starter Thread starter ubu
  • Start date Start date
U

ubu

How can you check to see if a subform is open in code?
Can you open them individually as users click a tab on a
tabbed control?
 
How can you check to see if a subform is open in code?
Can you open them individually as users click a tab on a
tabbed control?

If the form is open, the subforms are open. In fact they open before
the form does.

You can (and for a large complex form with many subforms, it's often a
good idea) use the Change event of a Tab control to remove the
SourceObject property of the subform on the page you're closing, and
assign a form name to that property on the form you're opening.
 
Back
Top