hi
in Adobe Reade we can open pdf files and go to page 100 with command prompt with this code :

Qt Code:
  1. <path to Adobe Reader> /A "page=100" "<Path To PDF file>"
To copy to clipboard, switch view to plain text mode 

but wen i use QProcess dont work..

Qt Code:
  1. QString adobeReade ="C://Program Files//Adobe//Reader 9.0//Reader//AcroRd32.exe";
  2. QString fileName = "C://Users//yy//Desktop//About.pdf";
  3. QStringList arguments;
  4. arguments <<"//a page=10 "+fileName;
  5. QProcess myProcess ;
  6. myProcess.start(adobeReade,arguments,QIODevice::ReadOnly);
To copy to clipboard, switch view to plain text mode