Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to open multiple .pdf files 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 ? give me step by step cose project.

Thanks for your time.
Posted

rtyresterttsertretsre tertetbert
 
Share this answer
 
If a pdf reader as acrobat reader is installed on the pc, then you can simply use this code to open e.g. 2 pdf':
C#
private void button1_Click(object sender, EventArgs e)
{
  Process.Start("C:\\Temp\\test.pdf");
  Process.Start("C:\\Temp\\test2.pdf");
}

You should of couse add some error handling to it :)
 
Share this answer
 
v2
Comments
Espen Harlinn 25-Feb-11 6:50am    
Right - my 5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900