Insert Thumbnails in PDF Reader

If you need a specific solution and you are not sure which product to use, please post your requirements here and we will advise you on our solution that best suits your needs
Post Reply
JESUS
Posts: 8
Joined: Thu Nov 21 2002

Insert Thumbnails in PDF Reader

Post by JESUS »

Hello!
I work with VC++.Net and want that in the application where I have the PDFCreActiveX control they appear Thumbnails, for that I do the
following thing:

// I am using the ActiveX interface of the CDIntf (version 2.07)
// m_pdfDoc: IDIDocument object

m_pdfDoc->Open(_T("c:\\Test.pdf"));
_bstr_t pageMode = _T("UseThumbs");
m_pdfDoc->PutPageMode(pageMode);
m_pdfDoc->Save(_T("c:\\Test.pdf"));

// m_PDFCreActiveX: CPDFCreactiveX object

long success = m_PDFCreActiveX.Open(_T("C:\\Test.pdf"), _T(""));


Where is the error?

What more is necessary to do so that they appear Thumbnails in the pdf Reader?

Thanks in advance for your help ,

Jesús
Post Reply