No message boxes

joe789

Registered User.
Local time
Today, 16:58
Joined
Mar 22, 2001
Messages
154
Hi Folks,

Is there any easy way to tell access not to display information boxes when a code-driven command button is pushed. For example, instead of warning the user that the table will be deleted and that some actions will be ran, is there a way to disable all those info boxes.

Thanks a lot,

Joe
 
Best not to turn them off completely as there may be one warning that you wouldn't want to miss.

use the SetWarnings statement in a macro if you are using them

and in code:

Code:
DoCmd.SetWarnings False
your operation
DoCmd.SetWarnings True
 

Users who are viewing this thread

Back
Top Bottom