我在Access 2010中内置了这个宏,它将打开报告并提示选择打印机。我在报告中默认了所以我想跳过打印机提示但无法弄清楚如何做到这一点。
Function OpenReport()
错误GoTo OpenReport_Err
DoCmd.OpenReport "Results", acViewReport, "", "", acNormal
DoCmd.RunCommand acCmdPrintPreview
DoCmd.RunCommand acCmdPrintSelection
DoCmd.RunCommand acCmdCloseDatabase
OpenReport_Exit: 退出功能
OpenReport_Err: MsgBox错误$ 恢复OpenReport_Exit
结束功能
2007年,有一个打印选项自动打印,没有提示,但我无法弄清楚如何重新创建它。
答案 0 :(得分:1)
我明白了。正确的路线是:
DoCmd.OpenReport "Results", , "", "", acNormal
我不需要视图报告参数。