J John W. Vinson Oct 26, 2009 #2 Can a Control on the Child subForm close the form it is On? Click to expand... 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
Can a Control on the Child subForm close the form it is On? Click to expand... 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
T Tom van Stiphout Oct 26, 2009 #3 On Mon, 26 Oct 2009 14:28:20 +1300, "Bob Vance" <[email protected]> wrote: DoCmd.Close acForm, Me.Parent.Name -Tom. Microsoft Access MVP
On Mon, 26 Oct 2009 14:28:20 +1300, "Bob Vance" <[email protected]> wrote: DoCmd.Close acForm, Me.Parent.Name -Tom. Microsoft Access MVP