Save Data before Printing

  • Thread starter mattc66 via AccessMonster.com
  • Start date
M

mattc66 via AccessMonster.com

Hi All,

On my main form I have a print button that generates a report based on the
data on my form. However if the user makes a change to the data and then hits
print the change is not reflect until he closes the form and then open it
again. So I added the DoCmd.Save to the Print button. This still didn't seem
to fix my problem.

What can I do?
 
K

kingston via AccessMonster.com

Try:

DoCmd.RunCommand acCmdSaveRecord
Hi All,

On my main form I have a print button that generates a report based on the
data on my form. However if the user makes a change to the data and then hits
print the change is not reflect until he closes the form and then open it
again. So I added the DoCmd.Save to the Print button. This still didn't seem
to fix my problem.

What can I do?
 
Top