Btw, this works for me:
Qt Code:
  1. #include <QtGui>
  2. #include <ActiveQt>
  3. #include "acropdf.h"
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. QApplication app(argc, argv);
  8. QString file = QFileDialog::getOpenFileName();
  9. if (file.isNull())
  10. return 0;
  11.  
  12. AcroPDFLib::AcroPDF pdf;
  13. pdf.LoadFile(file);
  14. pdf.show();
  15. return app.exec();
  16. }
To copy to clipboard, switch view to plain text mode 
Where acropdf.h and acropdf.cpp were generated by dumpcpp. I can see AcroRd32.exe starting up, and I can see it quitting a while after the window is closed.