How do i specify certain pages to print using the normal view??
heres what i have that works but it always load up a preview of the report to print which takes too long
DoCmd.OpenReport "CPDReport", acViewNormal, "", "[DISCLOSURE_TABLE]![ID]=[Forms]![DISCLOSURE_ENTRY_FORM]![ID]"
DoCmd.SelectObject acReport, "CPDReport" // Error!!
DoCmd.PrintOut acPages, 2, 15, acMedium, Me![CopiesToPrint], True
DoCmd.Close acReport, "CPDReport", acSaveNo
But if i change the acviewnormal, i get an error at line Error!! that says "The object CPDReport is not open"
please help.. thanks in advance
Jimmy
heres what i have that works but it always load up a preview of the report to print which takes too long
DoCmd.OpenReport "CPDReport", acViewNormal, "", "[DISCLOSURE_TABLE]![ID]=[Forms]![DISCLOSURE_ENTRY_FORM]![ID]"
DoCmd.SelectObject acReport, "CPDReport" // Error!!
DoCmd.PrintOut acPages, 2, 15, acMedium, Me![CopiesToPrint], True
DoCmd.Close acReport, "CPDReport", acSaveNo
But if i change the acviewnormal, i get an error at line Error!! that says "The object CPDReport is not open"
please help.. thanks in advance
Jimmy