cliff7376
10-30-2001, 09:10 AM
i have a program where i am appending records by clicking on a button. when i do that access gives me messages asking me if i really want to do this. Is there a way to get rid of these messages in code?
|
View Full Version : can i make messages from access go away? cliff7376 10-30-2001, 09:10 AM i have a program where i am appending records by clicking on a button. when i do that access gives me messages asking me if i really want to do this. Is there a way to get rid of these messages in code? DES 10-30-2001, 09:18 AM DoCmd.SetWarnings = False Don't forget to turn them back on at the end of your code. cliff7376 10-30-2001, 09:21 AM thank you very much cliff7376 10-30-2001, 09:24 AM thank you very much |