hi all, i have a report i have made and a form that goes with it in my form i have a check box field that is "PAID" so when the user checks it on the report will say "Paid" on it with a label i have made for it. now how can i get the report to print 2 invoices one that says "Paid" and one that says "File". i was looking at the report properties and i have found a event called "OnPrint" how would i use this to my advantage to get it to print 2 that says all of that? can this be done or is there another solution?
just so you know what i have in the label i have this:
i don't know if this will help!
lee123
just so you know what i have in the label i have this:
Code:
Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
If IsPaid Then
orderstatuslabel.Caption = "PAID"
Else
orderstatuslabel.Caption = "PENDING"
End If
End Sub
lee123
Comment