INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- The 'CreateDialog' function creates a modeless dialog box
-- from a dialog box template resource.
-- The 'CreateDialogParam' function 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 the WM_INITDIALOG message.
-- An application can use this value to initialize dialog box controls.
-- The 'DialogBox' function 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' procedure.
-- The 'DialogBoxParam' function 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.
-- The 'EndDialog' procedure destroys a modal dialog box, causing
-- the system to end any processing for the dialog box.
-- The 'GetDlgCtrlID' function returns the identifier
-- of the specified control.
-- The 'GetDlgItem' function retrieves the handle of a control in the
-- specified dialog box.
-- The 'GetDlgItemText' function retrieves the title or text associated
-- with a control in a dialog box.
-- The 'GetNextDlgGroupItem' function retrieves the handle of the first
-- control in a group of controls that precedes (or follows)
-- the specified control in a dialog box.
-- The 'GetNextDlgTabItem' function retrieves the handle of the first
-- control that has the WS_TABSTOP style that precedes (or follows)
-- the specified control.
-- The 'IsDialogMessage' function determines whether a message
-- is intended for the specified dialog box and, if it is, processes
-- the message.
-- The 'MessageBox' function 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 'MessageBoxEx' function 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
-- wLanguageId parameter specifies which set of language resources is used
-- for the predefined push buttons. For full descriptions of the other
-- parameters of 'MessageBoxEx', see 'MessageBox'.
-- The 'SendDlgItemMessage' function sends a message
-- to the specified control in a dialog box.
-- The 'SetDlgItemInt' procedure sets the text of a control in a
-- dialog box to the string representation of a specified integer value.
-- The 'SetDlgItemText' procedure sets the title or text of a control
-- in a dialog box.
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |