Suppress System Message

Joshann

Registered User.
Local time
Today, 02:35
Joined
Mar 22, 2002
Messages
142
Can anyone tell me how to suppress the little message called "Printing" that says something like "Now Printing..."? I have tried the following, and it didn't work. The little message still pops up.

Code:
DoCmd.SetWarnings False
DoCmd.OutputTo acReport, "rptCommentsPrevValue", "RichTextFormat(*.rtf)", "PrevValue.rtf", False, "", 0
DoCmd.OutputTo acReport, "rptCommentsNewValue", "RichTextFormat(*.rtf)", "NewValue.rtf", False, "", 0
DoCmd.SetWarnings True
 
suppress

I believe this is an API programming issue.
Don't know of any way in MS Access
 
don't know whether echo off will suppress the printing message

you need to put echo on at some ponit.
 
gemma-the-husky said:
don't know whether echo off will suppress the printing message

you need to put echo on at some ponit.

Do you have any idea where and exactly how I would put echo off? I'd like to try it.
 
look at help

i think its just
docmd.echo false or
docmd.echo true
 

Users who are viewing this thread

Back
Top Bottom