I have to open a help pdf file at a specified page in C# in windows form,
I tried this link,
http://bytes.com/topic/c-sharp/answers/459446-open-pdf-file-specified-page-c
Process myProcess = new Process();
myProcess.Start Info.FileName = "Acrobat.ex e";
myProcess.Start Info.Arguments = "/A \"page=2=OpenAc tions\"C:\\TEMP \\Modified_User _Manual_Ch1-3.pdf";
myProcess.Start ();
I am getting an error says "The system cannot find the file specified" in myProcess.Start ();
Do i have to install Acrobat.exe to execute this code.
Need hlp ASAP.
I tried this link,
http://bytes.com/topic/c-sharp/answers/459446-open-pdf-file-specified-page-c
Process myProcess = new Process();
myProcess.Start Info.FileName = "Acrobat.ex e";
myProcess.Start Info.Arguments = "/A \"page=2=OpenAc tions\"C:\\TEMP \\Modified_User _Manual_Ch1-3.pdf";
myProcess.Start ();
I am getting an error says "The system cannot find the file specified" in myProcess.Start ();
Do i have to install Acrobat.exe to execute this code.
Need hlp ASAP.
Comment