B BoroLee Registered User. Local time Today, 11:46 Joined Aug 30, 2000 Messages 90 Aug 31, 2000 #1 I am writing a procedure, but am having difficulty in turning the SystemWarnings to Off. Can anyone tell me what I need to type ???
I am writing a procedure, but am having difficulty in turning the SystemWarnings to Off. Can anyone tell me what I need to type ???
A Atomic Shrimp Humanoid lifeform Local time Today, 11:46 Joined Jun 16, 2000 Messages 1,954 Aug 31, 2000 #2 In VBA, you can suppress error messages with: On Error Resume Next and turn them back on with: On Error Goto 0 But it's not a good idea to use this as a substitiute for proper error handling. Mike
In VBA, you can suppress error messages with: On Error Resume Next and turn them back on with: On Error Goto 0 But it's not a good idea to use this as a substitiute for proper error handling. Mike
Fornatian Dim Person Local time Today, 11:46 Joined Sep 1, 2000 Messages 1,396 Sep 1, 2000 #3 I assume you have tried this syntax: Docmd.Setwarnings False *Code to Run* Docmd.Setwarnings True This should work, but you must setwarnings to true after running the procedure to show then again Formatian
I assume you have tried this syntax: Docmd.Setwarnings False *Code to Run* Docmd.Setwarnings True This should work, but you must setwarnings to true after running the procedure to show then again Formatian