Auto Saving

  • Thread starter Thread starter Sasha
  • Start date Start date
Sasha said:
Is there a way to save a form every 3 minutes?

Set the TimerInterval property to 180000

In the Timer Event have code...

If Me.Dirty = True Then Me.Dirty = False
 
Save the form design? Or save the data entered into a form? Either way,
the answer is No. You will have to manually save the form whenever you want
it saved when you are designing the form. As for entering data, each time
you move to a new record, the data is saved, so there is no need to auto
save.
 
The data. The form is more than one page and can often
take hours to fill out. If there is a hiccup in the
server what was entered is lost.
 
Back
Top