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
 
R

Rainbow01

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

"[email protected]" 來函:
 
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
 
Top