View Full Version : SQL update message customization required


bharath_hsbc
02-22-2007, 09:25 AM
Hi.

I have a button that updates records from my form to a table. On clicking it pops up a message box with an update confirmation. Please suggest a way to customize the message box.

:)

KernelK
02-22-2007, 10:24 AM
I don't believe that you can "customize" this message. You can prevent the message from appearing, and you can display your own message if you prefer. To prevent the message from appearing put:
DoCmd.SetWarnings False
before your update code. Make sure to turn them back on after the update call though, or no warnings will ever appear for anything.
DoCmd.SetWarnings True