PRB: FindText, ReplaceText Hook Function (96135)



The information in this article applies to:

  • Microsoft Platform Software Development Kit (SDK) 1.0
  • Microsoft Windows Software Development Kit (SDK) 3.1

This article was previously published under Q96135

SYMPTOMS

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.

CAUSE

The hook function is returning FALSE after processing the WM_INITDIALOG message.

RESOLUTION

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.

Modification Type:MinorLast Reviewed:7/11/2005
Keywords:kbCmnDlgFind kbCmnDlgRepl kbcode kbprb KB96135 kbAudDeveloper