Many of you use custom data entry forms to enter new data. You enter the data and then click a command button that accepts the data and shows a new blank form for the next entry. However, if you check on the record you just entered, it doesn't appear to be there.
If you're using VBA code to handle your data entry, you must remember to save the record! Simply add the following statement to your command button code:
DoCmd.RunCommand acCmdSaveRecord
Doing so will save your record immediately.


No comments:
Post a Comment