Suppress System Message (1 Viewer)

Joshann

Registered User.
Local time
Today, 03:03
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
 

Rickster57

Registered User.
Local time
Today, 01:03
Joined
Nov 7, 2005
Messages
431
suppress

I believe this is an API programming issue.
Don't know of any way in MS Access
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 09:03
Joined
Sep 12, 2006
Messages
15,663
don't know whether echo off will suppress the printing message

you need to put echo on at some ponit.
 

Joshann

Registered User.
Local time
Today, 03:03
Joined
Mar 22, 2002
Messages
142
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.
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 09:03
Joined
Sep 12, 2006
Messages
15,663
look at help

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

Users who are viewing this thread

Top Bottom