G Guest Oct 18, 2007 #1 I need code to close a form "frmName" (if it exists) in the current db. Similar to: IsObject(CurrentDb.FormDefs("frmName")) -Brad
I need code to close a form "frmName" (if it exists) in the current db. Similar to: IsObject(CurrentDb.FormDefs("frmName")) -Brad
F fredg Oct 18, 2007 #2 I need code to close a form "frmName" (if it exists) in the current db. Similar to: IsObject(CurrentDb.FormDefs("frmName")) -Brad Click to expand... If CurrentProject.AllForms("FormA").IsLoaded Then DoCmd.Close acForm, "FormA" End If
I need code to close a form "frmName" (if it exists) in the current db. Similar to: IsObject(CurrentDb.FormDefs("frmName")) -Brad Click to expand... If CurrentProject.AllForms("FormA").IsLoaded Then DoCmd.Close acForm, "FormA" End If