R
Rpettis31
I have a command button that prints a report based on a single record.
I would like the option to specify the number of copies I can print rather
then continuously pushing the button.
Here is my code.
Private Sub cmdHoldTag_Click()
Dim StrCriterion As String
StrCriterion = "[DMRID]=" & Me.DMRID
DoCmd.OpenReport "rptQualityHold", acNormal, , StrCriterion
Exit Sub
End Sub
I would like the option to specify the number of copies I can print rather
then continuously pushing the button.
Here is my code.
Private Sub cmdHoldTag_Click()
Dim StrCriterion As String
StrCriterion = "[DMRID]=" & Me.DMRID
DoCmd.OpenReport "rptQualityHold", acNormal, , StrCriterion
Exit Sub
End Sub