Printing multiple copies

G

Guest

I am working with an application that has to print work tickets based on number of batches. If my batch # field contains 1, I have to print 1 work ticket. If batch # field contains 5, I have to print 5 copies of the work ticket. How can I do this
Thanks.
 
C

Cheryl Fischer

Perhaps a simple loop ...

Dim i as Integer

For i = 1 to Me!BatchNumberField

' your existing code to print the work ticket

next i


hth,
--

Cheryl Fischer, MVP Microsoft Access
Law/Sys Associates, Houston, TX


FRANK said:
I am working with an application that has to print work tickets based on
number of batches. If my batch # field contains 1, I have to print 1 work
ticket. If batch # field contains 5, I have to print 5 copies of the work
ticket. How can I do this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top