CreateDialog |
Creates a modeless dialog box from a dialog box template resource.
|
CreateDialogIndirect |
Creates a modeless dialog box from a dialog box template in memory.
|
CreateDialogIndirectParam |
Creates a modeless dialog box from a dialog box template in memory. Before displaying the dialog box, the function passes an application-defined value to the dialog box procedure as the lParam parameter of the WM_INITDIALOG message. An application can use this value to initialize dialog box controls.
|
CreateDialogParam |
Creates a modeless dialog box from a dialog box template resource. Before displaying the dialog box, the function passes an application-defined value to the dialog box procedure as the lParam parameter of the WM_INITDIALOG message. An application can use this value to initialize dialog box controls.
|
DefDlgProc |
Calls the default dialog box window procedure to provide default processing for any window messages that a dialog box with a private window class does not process.
|
DialogBox |
Creates a modal dialog box from a dialog box template resource. DialogBox does not return control until the specified callback function terminates the modal dialog box by calling the EndDialog function.
|
DialogBoxIndirect |
Creates a modal dialog box from a dialog box template in memory. DialogBoxIndirect does not return control until the specified callback function terminates the modal dialog box by calling the EndDialog function.
|
DialogBoxIndirectParam |
Creates a modal dialog box from a dialog box template in memory. Before displaying the dialog box, the function passes an application-defined value to the dialog box procedure as the lParam parameter of the WM_INITDIALOG message. An application can use this value to initialize dialog box controls.
|
DialogBoxParam |
Creates a modal dialog box from a dialog box template resource. Before displaying the dialog box, the function passes an application-defined value to the dialog box procedure as the lParam parameter of the WM_INITDIALOG message. An application can use this value to initialize dialog box controls.
|
DialogProc |
An application-defined callback function used with the CreateDialog and DialogBox families of functions. It processes messages sent to a modal or modeless dialog box. The DLGPROC type defines a pointer to this callback function. DialogProc is a placeholder for the application-defined function name.
|
EndDialog |
Destroys a modal dialog box, causing the system to end any processing for the dialog box.
|
GetDialogBaseUnits |
Retrieves the system's dialog base units, which are the average width and height of characters in the system font. For dialog boxes that use the system font, you can use these values to convert between dialog template units, as specified in dialog box templates, and pixels. For dialog boxes that do not use the system font, the conversion from dialog template units to pixels depends on the font used by the dialog box.
|
GetDlgCtrlID |
Retrieves the identifier of the specified control.
|
GetDlgItem |
Retrieves a handle to a control in the specified dialog box.
|
GetDlgItemInt |
Translates the text of a specified control in a dialog box into an integer value.
|
GetDlgItemText |
Retrieves the title or text associated with a control in a dialog box.
|
GetNextDlgGroupItem |
Retrieves a handle to the first control in a group of controls that precedes (or follows) the specified control in a dialog box.
|
GetNextDlgTabItem |
Retrieves a handle to the first control that has the WS_TABSTOP style that precedes (or follows) the specified control.
|
IsDialogMessage |
Determines whether a message is intended for the specified dialog box and, if it is, processes the message.
|
MapDialogRect |
Converts the specified dialog box units to screen units (pixels). The function replaces the coordinates in the specified RECT structure with the converted coordinates, which allows the structure to be used to create a dialog box or position a control within a dialog box.
|
MessageBox |
Displays a modal dialog box that contains a system icon, a set of buttons, and a brief application-specific message, such as status or error information. The message box returns an integer value that indicates which button the user clicked.
|
MessageBoxEx |
Creates, displays, and operates a message box. The message box contains an application-defined message and title, plus any combination of predefined icons and push buttons. The buttons are in the language of the system user interface.
|
MessageBoxIndirect |
Creates, displays, and operates a message box. The message box contains application-defined message text and title, any icon, and any combination of predefined push buttons.
|
SendDlgItemMessage |
Sends a message to the specified control in a dialog box.
|
SetDlgItemInt |
Sets the text of a control in a dialog box to the string representation of a specified integer value.
|
SetDlgItemText |
Sets the title or text of a control in a dialog box.
|