M
Michael
I have a form that prints a report using the following code
Private Sub Command67_Click()
Dim strWhere As String
If Me.Dirty Then 'Save any edits.
Me.Dirty = False
End If
If Me.NewRecord Then 'Check there is a record to print
MsgBox ""
Else
strWhere = "[RintracciabilitàID] = " & Me.[RintracciabilitàID]
DoCmd.OpenReport "Rintracciabilità", acNormal, , strWhere
End If
End Sub
is there a way to add a textbox where the user can put a number for the
amount of copies he would like of this report?
thank you
Michael
Private Sub Command67_Click()
Dim strWhere As String
If Me.Dirty Then 'Save any edits.
Me.Dirty = False
End If
If Me.NewRecord Then 'Check there is a record to print
MsgBox ""
Else
strWhere = "[RintracciabilitàID] = " & Me.[RintracciabilitàID]
DoCmd.OpenReport "Rintracciabilità", acNormal, , strWhere
End If
End Sub
is there a way to add a textbox where the user can put a number for the
amount of copies he would like of this report?
thank you
Michael