A
asn
Does anyone know instead of using below code to print how can I preview it as
is?
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Static iCopiesPrinted As Integer
If PrintCount = 1 Then iCopiesPrinted = 0
iCopiesPrinted = iCopiesPrinted + 1
If iCopiesPrinted < ([Forms]![FRMWO]![printinnerlabelqty] + 10) Then
Me.NextRecord = False
End Sub
is?
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Static iCopiesPrinted As Integer
If PrintCount = 1 Then iCopiesPrinted = 0
iCopiesPrinted = iCopiesPrinted + 1
If iCopiesPrinted < ([Forms]![FRMWO]![printinnerlabelqty] + 10) Then
Me.NextRecord = False
End Sub