Can a Control close a form from a SubForm

J

John W. Vinson

Can a Control on the Child subForm close the form it is On?

Sure. You want to close the *parent* form? (A subform cannot be "closed" as it
is not actually "open"). If so, put code in the appropriate control event:

DoCmd.Close acForm, Parent.Name, acSaveNo
 
Top