Update on a table

  • Thread starter Thread starter Bob
  • Start date Start date
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
 
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
 
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
 
Back
Top