Sunday, March 23, 2008

How do I call the default dialog box window procedure?

In your dialog box window procedure,
INT_PTR CALLBACK DialogProc(          
HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
you should return FALSE in order to have the default dialog box window procedure executed.

No comments: