private void Form1_Load(object sender, EventArgs e)
        {
            Process myprocess = new Process();
            myprocess.StartInfo.FileName = "Acrobat.exe";
            myprocess.StartInfo.Arguments="/A \" page=2=OpenActions\"C:\\Users\\xxxx\\xxx.pdf";
            myprocess.Start();
        }
 
When i Run this program "The system cannot find the file specified" Can u please help me with that error?
 
Thanks