updating a table from a form

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

I have a customer form that i enter new customer, on the form i have a
button that will open up a new order for thatcustomer,

When i do this the orde form does not reconise the cusomers ID number
as the cusomers form has not updated the cusomers table.

How dow i get the table to update when i click the order button

Thanks

Simon
 
Simon said:
I have a customer form that i enter new customer, on the form i have a
button that will open up a new order for thatcustomer,

When i do this the orde form does not reconise the cusomers ID number
as the cusomers form has not updated the cusomers table.

How dow i get the table to update when i click the order button

Thanks

Simon

Add line...

Me.Dirty = False

....before the line that opens the second form.
 
Back
Top