I open a pdf file when my form is loaded with the following code:
Process process = new Process(); ProcessStartInfo startInfo = new ProcessStartInfo(); proce
call it like what was suggested here: Adobe Reader Command Line Reference
So it would be:
ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.FileName = "EXE_PATH\\AcroRd32.exe"; startInfo.Arguments = "/A \"page=PAGE_NUM\" \"FILE_PATH\""; Process.Start(startInfo);