|
The WM_INITDIALOG Message
Windows does not send a WM_CREATE message to the dialog box procedure. Instead, it sends a WM_INITDIALOG message when it creates the dialog box and all its controls but before it
displays the dialog box. The procedure should carry out any initialization
required to ensure that the dialog box displays the current settings associated with
the command or task. For example, when a dialog box contains a control to show
the current drive and directory, the procedure must determine the current drive
and directory and set the control to that value.
The procedure can initialize controls by using functions such as SetDlgItemText and CheckDlgButton. Because controls are windows, the procedure can also manipulate them by
using window-management functions such as EnableWindow and SetFocus. The procedure can retrieve the window handle for a control by using the GetDlgItem function.
The dialog box procedure can change the contents, state, and position of any
control as needed. For example, in a dialog box that contains a list box of
filenames and an Open button, the procedure can disable the Open button until the
user selects a file from the list. In this example, the dialog box template
specifies the WS_DISABLED style for the Open button and Windows automatically
disables the button when creating it. When the dialog box procedure receives a
notification message from the list box indicating that the user has selected a file,
the procedure calls the EnableWindow function to enable the Open button.
If the application creates the dialog box by using one of the functions DialogBoxParam, DialogBoxIndirectParam, CreateDialogParam, or CreateDialogIndirectParam, the lParam parameter for the WM_INITDIALOG message contains the extra parameter passed
to the function. Applications typically use this extra parameter to pass the
address of additional initialization information to the dialog box procedure, but
the dialog box procedure must determine the meaning of the parameter. If the
application uses another function to create the dialog box, Windows sets the lParam parameter to NULL.
Before returning from the WM_INITDIALOG message, the procedure should determine whether it should set the input focus
to a given control. If the dialog box procedure returns TRUE, Windows
automatically sets the input focus to the control whose window handle is in the wParam parameter. If the control receiving the default focus is not appropriate, it
can set the focus to the appropriate control by using the SetFocus function. If the procedure sets the input focus, it must return FALSE to
prevent Windows from setting the default focus. The control receiving the default
input focus is always the first control given in the template that is visible,
not disabled, and has the WS_TABSTOP style. If no such control exists, Windows
sets the default input focus to the first control in the template.
| 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
|