C# Programming
09-03-2009, 01:02 AM
Hello,
I have a pdf file that has the whole help stuff in it. Based on the helpId(Which form the user has selected) I should display the correct help page.
Will this below code serve my purpose?
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Guide.pdf";
startInfo.Verb = helpId;
System.Diagnostics.Process.Start(startInfo);
I have a pdf file that has the whole help stuff in it. Based on the helpId(Which form the user has selected) I should display the correct help page.
Will this below code serve my purpose?
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Guide.pdf";
startInfo.Verb = helpId;
System.Diagnostics.Process.Start(startInfo);