mike_s
07-04-2000, 06:11 AM
Something is not updating correctly, I have to go back & forward one record to print the newly entered data.
|
View Full Version : Printing current form mike_s 07-04-2000, 06:11 AM Something is not updating correctly, I have to go back & forward one record to print the newly entered data. Pat Hartman 07-04-2000, 08:23 AM You must save the record before printing it. Access won't automatically save the record until you move off it as you have discovered. Add the following to the button click code before the print command. DoCmd.RunCommand acCmdSaveRecord |