Update on a table

B

Bob

--
Is it correct that when I enter some data through forms that it does not
update the table untill I close that form. Because I have a print button on
my form I don't get the information I have just entered on my report, Is
there someway of updating, maybe when you click The print Button!
Thanks for any Help......Bob






..........Jenny Vance
 
R

Rob Parker

It's quite possible that the newly entered data has not been written to the
table. You can force this to happen by including the statement

Me.Dirty = False

immediately before the line which opens the report (in the Click event of
the Print button).

HTH,

Rob
 
B

Bob

BRILLIANT :) Rob worked perfect....Bob

Rob Parker said:
It's quite possible that the newly entered data has not been written to
the table. You can force this to happen by including the statement

Me.Dirty = False

immediately before the line which opens the report (in the Click event of
the Print button).

HTH,

Rob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top