I Need to create an Unbound form or figure out how to open a form in design view using the command acCmdNewObjectAutoForm. When the form is displayed with the following code, it immediately opens it up in edit view...:
DoCmd.SelectObject acTable, strTable, True
DoCmd.RunCommand acCmdNewObjectAutoForm
I want to open it in Design view similar to when you use the form Wizard to create a blank unbound form or assigns a recordsource to the form, but displays the form in Design view. Any help would be appreciated...
DoCmd.SelectObject acTable, strTable, True
DoCmd.RunCommand acCmdNewObjectAutoForm
I want to open it in Design view similar to when you use the form Wizard to create a blank unbound form or assigns a recordsource to the form, but displays the form in Design view. Any help would be appreciated...