save record on continuous form

  • Thread starter Thread starter Anne
  • Start date Start date
A

Anne

Can you force a save record at a certain control, to force a requery to a
linkfield at that point?
 
Anne said:
Can you force a save record at a certain control, to force a requery to a
linkfield at that point?


I don't understand what you mean by "force a requery to a
linkfield", but you can force a record to be saved (as long
as it passes its intefrity checks) at any tine by using a
line of code:
If Me.Dirty Then Me.Dirty = False
 
Back
Top