How to hide status screen from export

S

sh

Hi' there,

In one of my applications I auto-export a report as a snapshot-image
every X seconds using:

DoCmd.OutputTo acOutputReport, "myReport", "Snapshot Format(*.snp)",
"rptDagStat.snp"

Is there a way to avoid the "status-screen" that's shows during the
export?

Kind regards

Soren
 
G

Guest

everytime you don't want to see system warning message, you can:

Docmd.SetWarning False
remember after running you code, turn it on again
Docmd.SetWarning True

"(e-mail address removed)" 來函:
 
S

Sogge

Thx for the reply! It seems that the status-screen is not considered as
a warning, cause it still appears everytime the:

DoCmd.OutputTo acOutputReport, "myReport", "Snapshot Format(*.snp)",
"rptDagStat.snp"

is run. Any other suggestions?

Kindly Soren
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top