I\'m just creating a simple calculator in C# (windows form)
I\'ve created a \"User Help\" which is a pdf file, what I want is to display that pdf file if the user cl
If your user has Adobe Reader (or any other PDF reader) installed on their machine, you could use:
System.Diagnostics.Process.Start( "My-PDF-file.pdf");
Hope this helps.
Note: Obviously, this will fail if the user does not have any PDF Reader applications installed.