ID: Q96135
The information in this article applies to:
When adding a hook function to the FindText or ReplaceText common dialog box, the dialog box is not shown. However, the hook function is receiving messages and the dialog box window does exist.
The hook function is returning FALSE after processing the WM_INITDIALOG message.
After processing the WM_INITDIALOG message in the hook function, return TRUE. If your hook function is setting the focus to a specific control, and therefore should return FALSE, add the following code:
case WM_INITDIALOG:
...WM_INITDIALOG code...
SetFocus(hCtrl);
ShowWindow(hDlg, SW_NORMAL);
UpdateWindow(hDlg);
return(FALSE);
This code ensures that the dialog box is visible.
Additional query words:
Keywords : kbcode kbCmnDlg kbCmnDlgFind kbCmnDlgRepl kbNTOS kbGrpUser kbWinOS
Issue type : kbprb
Last Reviewed: December 26, 1998