Consulting

Results 1 to 2 of 2

Thread: Solved: Stopping Records Being saved on form close

  1. #1

    Solved: Stopping Records Being saved on form close

    Hello,

    How I can stop a form automatically saving fields when it is closed?
    I have written code that stops duplicate entries under normal operation but then when I close the form it saves a record in the table of the last field values and this is causing duplicate entries to be stored.

    Thanks in advance

  2. #2
    For anyone interested add this to the before upddate event of the form

    Private Sub Form_BeforeUpdate(Cancel as Integer)
    Cancel = true
    end sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •