I used the AutoForm tool to create a form but when it opens it already has the first record data in it and I can't seem to find a way to get it to show blank spaces to allow entering new data. Will appreciate help!
Marty![]()
I used the AutoForm tool to create a form but when it opens it already has the first record data in it and I can't seem to find a way to get it to show blank spaces to allow entering new data. Will appreciate help!
Marty![]()
Have to move to new record. Can use the intrinsic navigation bar at bottom of form (if it is enabled). Enable/disable by setting the form's NavigationBar property.
Alternatives:
1. command buttons and code.
2. allow only new record entry by setting form DataEntry property to Yes
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Or, to open to New Record but still see existing Records:
Code:Private Sub Form_Load() DoCmd.GoToRecord , , acNewRec End Sub
Linq ;0)>
Thanks June 7 you solved my problem !!!![]()