|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| user-defined
| Header File
| commdlg.h
| Unicode
| No
| Platform Notes
| LPFRHOOKPROC
|
|
|
FRHookProc
An FRHookProc hook procedure is an application-defined or library-defined callback
procedure that is used with the Find and Replace common dialog boxes. The hook
procedure receives messages or notifications intended for the default dialog box
procedure.
UINT APIENTRY FRHookProc(
HWND hdlg,
| // handle to the dialog box window
| UINT uiMsg
| // message identifier
| WPARAM wParam,
| // message parameter
| LPARAM lParam
| // message parameter
| );
|
|
Parameters
hdlg
Handle to the Find or Replace common dialog box window for which the message
is intended.
uiMsg
Identifies the message being received.
wParam
Specifies additional information about the message. The exact meaning depends
on the value of the uiMsg parameter.
lParam
Specifies additional information about the message. The exact meaning depends
on the value of the uiMsg parameter.
If the uiMsg parameter indicates the WM_INITDIALOG message, lParam is a pointer to a FINDREPLACE structure containing the values specified when the common dialog box was
created.
Return Values
If the hook procedure returns zero, the default dialog box procedure processes
the message.
If the hook procedure returns a nonzero value, the default dialog box
procedure ignores the message.
Remarks
When you use the FindText or ReplaceText functions to create a Find or Replace common dialog box, you can provide an FRHookProc hook procedure to process messages or notifications intended for the dialog
box procedure. To enable the hook procedure, use the FINDREPLACE structure that you passed to the dialog creation function. Specify the
address of the hook procedure in the lpfnHook member and specify the FR_ENABLEHOOK flag in the Flags member.
The default dialog box procedure processes the WM_INITDIALOG message before
passing it to the hook procedure. For all other messages, the hook procedure
receives the message first. Then, the return value of the hook procedure determines
whether the default dialog procedure processes the message or ignores it.
If the hook procedure processes the WM_CTLCOLORDLG message, it must return a valid brush handle for painting the background of
the dialog box. In general, if the hook procedure processes any WM_CTLCOLOR*
message, it must return a valid brush handle for painting the background of the
specified control.
Do not call the EndDialog function from the hook procedure. Instead, the hook procedure can call the PostMessage function to post a WM_COMMAND message with the IDABORT value to the dialog
box procedure. Posting IDABORT closes the dialog box and causes the dialog box
function to return FALSE. If you need to know why the hook procedure closed the
dialog box, you must provide your own communication mechanism between the hook
procedure and your application.
You can subclass the standard controls of the common dialog box. However, the
common dialog box procedure may also subclass the controls. Because of this,
you should subclass controls when your hook procedure processes the WM_INITDIALOG
message. This ensures that your subclass procedure receives the
control-specific messages before the subclass procedure set by the dialog box procedure.
FRHookProc is a placeholder for the application-defined or library-defined function
name. The LPFRHOOKPROC type is a pointer to an FRHookProc hook procedure.
See Also
EndDialog, FINDREPLACE, FindText, PostMessage, ReplaceText, WM_INITDIALOG, WM_CTLCOLORDLG
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|