DeleteSelectedPages ThumbnailCtrl didn't work in C++

The PDF Creator enables you to create secure PDF documents and to view, print and process existing PDF documents.
If you have any questions about the installation and usage of the PDF Creator please post them here.
Post Reply
wd818
Posts: 22
Joined: Tue Oct 14 2008

DeleteSelectedPages ThumbnailCtrl didn't work in C++

Post by wd818 »

I am trying to add two messages handler for DeleteSelectedPagesThumbnail and ShowMessageThumbnail. After the Wizard create that two methods. I am trying to debug and set break point there, but it never get called event you selects multiple pages and click on delete button........

... Is there anyone have the same issues like mind? Need your help.....



BEGIN_EVENTSINK_MAP(CDocumentManagementInfoDlg, CBaseDlg)
ON_EVENT(CDocMInfoDlg, IDC_THUMBNAIL, 4, CDocMInfoDlg::ShowMessageThumbnail, VTS_I4 VTS_PI4)
ON_EVENT(CDocMInfoDlg, IDC_THUMBNAIL, 2, CDocMInfoDlg::DeleteSelectedPagesThumbnail, VTS_PI4)
ON_EVENT(CDocMInfoDlg, IDC_THUMBNAIL, 1, CDocMInfoDlg::ThumbActivatedThumbnail, VTS_I4
END_EVENTSINK_MAP()

void CDocMInfoDlg::ShowMessageThumbnail(long message, long* ShowDefault)
{
// TODO: Add your message handler code here
..............

void CDocMInfoDlg::DeleteSelectedPagesThumbnail(long* Continue)
{.............
Post Reply