MaleNurse325
Registered User.
- Local time
- Today, 00:05
- Joined
- Jan 11, 2016
- Messages
- 72
Hi guys,
I have a report that I woudl like to print four copies of with this code. Where do I put the number of copies please?
Function mcrPrintConsignmentNote()
On Error GoTo mcrPrintConsignmentNote_Err
DoCmd.RefreshRecord
DoCmd.OpenReport "rptConsNote_by number", acViewNormal, "", "", acNormal
DoCmd.Close acReport, "rptConsNote_by number"
DoCmd.Close acForm, "frmConsignNote"
DoCmd.OpenForm "Switchboard", acNormal, "", "", , acNormal
mcrPrintConsignmentNote_Exit:
Exit Function
I have a report that I woudl like to print four copies of with this code. Where do I put the number of copies please?
Function mcrPrintConsignmentNote()
On Error GoTo mcrPrintConsignmentNote_Err
DoCmd.RefreshRecord
DoCmd.OpenReport "rptConsNote_by number", acViewNormal, "", "", acNormal
DoCmd.Close acReport, "rptConsNote_by number"
DoCmd.Close acForm, "frmConsignNote"
DoCmd.OpenForm "Switchboard", acNormal, "", "", , acNormal
mcrPrintConsignmentNote_Exit:
Exit Function