Question on OutputTo Method

J

John Lane

Is there anyway to get rid of the annoying popup message that happens when
you run this metnod? Thanks.
 
D

Dirk Goldgar

John Lane said:
Is there anyway to get rid of the annoying popup message that happens
when you run this metnod? Thanks.

Which annoying popup message are you talking about? OutputTo doesn't
necessarily give a message. Please post the code you are using and the
message you're talking about.
 
J

John Lane

It's of the form: "Outputing report such-and-such to file such-and-such".
Actually, it's not really a popup, but an informational one that appears and
disappears.
 
J

John Lane

I tried Docmd.SetWarnings False/True and it didn't help. Guess I am stuck
with yet another Microsoft "feature". I wonder if these people ever actually
try to use what they create.
 
D

Dirk Goldgar

John Lane said:
I tried Docmd.SetWarnings False/True and it didn't help. Guess I am
stuck
with yet another Microsoft "feature". I wonder if these people ever
actually
try to use what they create.

Setting Application.Echo = False doesn't have an effect either. But I
wouldn't be at all surprised if the technique described here works:

http://www.mvps.org/access/api/api0037.htm

I can't say I've tried it, though.
 
Top