Run Adobe Acrobat from within VB.Net app

  • Thread starter Thread starter Christie
  • Start date Start date
C

Christie

I have a pdf file that I want to use as part of the help system for my
app...when the user clicks the toolstripbutton, Adobe Acrobat should
fire up displaying the relevant article...how would one go about doing
this...

I am using Visual Studio 2005(VB.Net).

Thanks
 
Christie said:
I have a pdf file that I want to use as part of the help system for my
app...when the user clicks the toolstripbutton, Adobe Acrobat should
fire up displaying the relevant article...how would one go about doing
this...

I am using Visual Studio 2005(VB.Net).

Thanks

A quick google search would have yielded this:

How about System.Diagnostics.Process.Start("filename.pdf")
 
Back
Top