Number of copies

N

NV

Hi !

I'm using API ShellExecute to print a .pdf or .doc from a control in a
Form. It works ok, but I need to print more than one file. Actually I
need the number of copies to be equal to the value of the text field
NumberCopies that exists in the same Form.

How can this be done ?

Thank you all
 
A

Alex Dybenko

As for .doc - you can open Word via automation and then print desired
number of copies

you can find several sample at support.Microsoft.com

perhaps you can do same with acrobat, but here I am not sure
 
T

Tammy Sanders

This is probably not the right way, but you could do this:

for incre = 1 to [NumberCopies]
API ShellExecute code
next incre
 

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