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
 

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

Similar Threads

Print Report Problem 2
Print a form? 2
Only Upper Case in Table 5
Updating a table from Form Entry 2
Text Box to show same data on every form 1
Delete Contents of text box 1
Can you save a report 27
New Record 4

Back
Top