F fernin8r Registered User. Local time Today, 07:09 Joined May 28, 2002 Messages 142 Jun 5, 2002 #1 I would like to open my form as Data Entry, but i do not want my form to always be data entry. what with the syntax for that. Here is my code: DoCmd.OpenForm "Estimator"
I would like to open my form as Data Entry, but i do not want my form to always be data entry. what with the syntax for that. Here is my code: DoCmd.OpenForm "Estimator"
J Jack Cowley Registered User. Local time Today, 07:09 Joined Aug 7, 2000 Messages 2,636 Jun 5, 2002 #2 DoCmd.OpenForm "Estimator", , , , acFormAdd This opens the form in Data Entry mode. Search help for OpenForm for other arguments for this method.
DoCmd.OpenForm "Estimator", , , , acFormAdd This opens the form in Data Entry mode. Search help for OpenForm for other arguments for this method.
F fernin8r Registered User. Local time Today, 07:09 Joined May 28, 2002 Messages 142 Jun 5, 2002 #3 Thanks