How to open .pdf file from c# Application - Please help

A

Anand Ganesh

Hi All,

I want to open a .pdf file from my C# application and show to the user.

I have acrobat reader in the client's computer.

How to do this? Any suggestions please ?

Thanks for your time.

Regards
Anand Ganesh
 
I

Ignacio Machin

Hi,

You could use System.Diagnostics.Process.Start()
take a look at it in the MSDN

Cheers,
 
R

Rao TRN

Alternately, you can host the web browser control in your C# application and
load this .pdf file into the browser control.
 
I

Ignacio Machin

Hi,

IMHO it's better if you use Process.Start() it will open acrobat reader and
you will see the document in another window.

Unless that you want to see the pdf inside your application I would go for
the Process.Start method

Cheers,
 

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