PRB: FindText, ReplaceText Hook FunctionLast reviewed: November 2, 1995Article ID: Q96135 |
The information in this article applies to:
SYMPTOMSWhen adding a hook function to the FindText and/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.
CAUSEThe hook function is returning FALSE after processing the WM_INITDIALOG message.
RESOLUTIONAfter 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 reference words: 3.10 3.50 3.51 4.00 95
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |