Consulting

Results 1 to 5 of 5

Thread: Solved: How to Suppress default confirmation Dialogs?

  1. #1

    Solved: How to Suppress default confirmation Dialogs?

    How to suppress the default confirm dialog resulting from the following code?
    DoCmd.RunCommand acCmdDeleteRecord

  2. #2
    VBAX Guru
    Joined
    Mar 2005
    Posts
    3,296
    Location
    SetWarnings Method
    DoCmd.SetWarnings False
    turns them off, remember to turn them back on agian.
    DoCmd.SetWarnings [FONT=verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif]True[/FONT]

  3. #3
    Thank you. I forgot it.

  4. #4
    VBAX Expert Imdabaum's Avatar
    Joined
    Jun 2006
    Posts
    652
    Location
    Just a friendly reminder to Click the Thread Tools and mark your posts as solved if you have resolved your issue.
    Someday I'll understand everything...
    Even then...I'll still pretend I'm a beginner.

  5. #5
    Thank you Imdabaum. I never did it before because I didn't know know. Thank you.

Posting Permissions

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