View Full Version : Update Field/Record


Kenln
09-19-2008, 06:47 AM
I have a Text field in which the user types; then clicks a Command Button that opens a report in preview mode.

However (I think) going from the Text field to the Command Button does not update the Record (or field???).

When the report is displayed it does not include the users changes or additions.

How would I get a field to update (causing the record to update) before the Report is displayed???

Thank you,

James Dudden
09-19-2008, 06:52 AM
I think you need to save the record before printing.

In code before the print command is executed put this:

DoCmd.RunCommand acCmdSaveRecord

Kenln
09-19-2008, 06:57 AM
Awesome.

Worked, first try. Thank you