Printing without saving current edits


/ Published in: Visual Basic
Save to your folder(s)

Changes to the current record are not saved just because you click a button to perform some other action. Novice Access users often forget to force a record save before executing an action such as OpenReport [or Close, etc.]


Copy this code and paste it in your HTML
  1. ' Include this line before executing an action such as OpenReport:
  2.  
  3. If Me.Dirty Then
  4. Me.Dirty = False
  5. End If

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.