print pdf

S

Siva M

Another option:

Dim psi As new ProcessStartInfo()
psi.FileName = "<PDF file path>"
psi.UseShellExecute = True
psi.Verb = "Print"
Prcess.Start (psi)

Hi All,
I want to print a pdf file from my vb.net 2003 program.
I have adobe acrobat 6 standard edition and I try this
http://vbcity.com/forums/topic.asp?tid=41287 but It doesn't work.
Any one can help?
Tks in advance.
JFB
 

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