S Sam D May 6, 2004 #2 One possible solution is to first copy the report and give it a meaningful name for the spooler. Print this copy and then delete it. Something like... DoCmd.CopyObject , "Frank", acReport, "OriginalReportName" DoCmd.OpenReport "Frank", acViewNormal DoCmd.DeleteObject acReport, "Frank" HTH Sam
One possible solution is to first copy the report and give it a meaningful name for the spooler. Print this copy and then delete it. Something like... DoCmd.CopyObject , "Frank", acReport, "OriginalReportName" DoCmd.OpenReport "Frank", acViewNormal DoCmd.DeleteObject acReport, "Frank" HTH Sam
S Sam D May 6, 2004 #3 In regard to my previous post... This will NOT work on MDE files, only MDBs! HTH Sam
S Savvoulidis Iordanis May 14, 2004 #4 I mean not preview it first, but use docmd.openreport "rername", acViewNormal so that I can distinguish the report in the spool window, in order to delete it if want
I mean not preview it first, but use docmd.openreport "rername", acViewNormal so that I can distinguish the report in the spool window, in order to delete it if want