TaskDialog Function

The TaskDialog function creates, displays, and operates a task dialog. The task dialog contains application-defined message text and title, icons, and any combination of predefined push buttons. This function does not support the registration of a callback function to receive notifications.

Syntax

HRESULT TaskDialog(      
    HWND hWndParent,     HINSTANCE hInstance,     PCWSTR pszWindowTitle,     PCWSTR pszMainInstruction,     PCWSTR pszContent,     TASKDIALOG_COMMON_BUTTON_FLAGS dwCommonButtons,     PCWSTR pszIcon,     int *pnButton );

Parameters

hWndParent
[in] Handle to the owner window of the task dialog to be created. If this parameter is NULL, the task dialog has no owner window.
hInstance
[in] Handle to the module that contains the icon resource identified by the pszIcon member, and the string resources identified by the pszWindowTitle and pszMainInstruction members. If this parameter is NULL, pszIcon must not be NULL, but must point to a null-terminated, Unicode string that contains a system resource identifier, for example, TD_ERROR_ICON. If this parameter is NULL, the pszWindowTitle and pszMainInstruction parameters must also point to null-terminated, Unicode strings that contain system resource identifiers.
pszWindowTitle
[in] Pointer to the string to be used for the task dialog title. This parameter is a null-terminated, Unicode string that contains either text, or an integer resource identifier passed through the MAKEINTRESOURCE macro. If this parameter is NULL, the filename of the executable program is used.
pszMainInstruction
[in] Pointer to the string to be used for the main instruction. This parameter is a null-terminated, Unicode string that contains either text, or an integer resource identifier passed through the MAKEINTRESOURCE macro. If this parameter is NULL, the filename of the executable program is used.
pszContent
[in] Pointer to a string used for additional text that appears below the main instruction, in a smaller font. This parameter is a null-terminated, Unicode string that contains either text, or an integer resource identifier passed through the MAKEINTRESOURCE macro. Can be NULL if no additional text is wanted.
dwCommonButtons
[in] Specifies the push buttons displayed in the dialog box. This parameter may be a combination of flags from the following group.
Note  If no buttons are specified, the dialog box will contain the OK button by default.
TDCBF_OK_BUTTON
The task dialog contains the push button: OK.
TDCBF_YES_BUTTON
The task dialog contains the push button: Yes.
TDCBF_NO_BUTTON
The task dialog contains the push button: No.
TDCBF_CANCEL_BUTTON
The task dialog contains the push button: Cancel. This button must be specified for the dialog box to respond to typical cancel actions (Alt-F4 and Escape).
TDCBF_RETRY_BUTTON
The task dialog contains the push button: Retry.
TDCBF_CLOSE_BUTTON
The task dialog contains the push button: Close.
pszIcon
[in] Pointer to a string that identifies the icon to display in the task dialog. This parameter must be an integer resource identifier passed to the MAKEINTRESOURCE macro or one of the following predefined values. If this parameter is NULL, no icon will be displayed. If the hInstance parameter is null and one of the predefined values is not used, no icon will be displayed.
TD_ERROR_ICON
A stop-sign icon appears in the task dialog.
TD_WARNING_ICON
An exclamation-point icon appears in the dialog box.
TD_INFORMATION_ICON
An icon consisting of a lowercase letter i in a circle appears in the task dialog.
pnButton
[out] 

When this function returns, contains a pointer to an integer location that receives one of the following values:

ValueDescription
0Function call failed. Refer to return value for more information.
IDCANCELCancel button was selected, Alt-F4 was pressed, Escape was pressed or the user clicked on the close window button.
IDNONo button was selected.
IDOKOK button was selected.
IDRETRYRetry button was selected.
IDYESYes button was selected.

If this value is NULL, no value is returned.

Return Value

Returns one of the following values.

S_OKThe operation completed successfully.
E_OUTOFMEMORYThere is insufficient memory to complete the operation.
E_INVALIDARGOne or more arguments are not valid.
E_FAILThe operation failed.

Remarks

When you use a task dialog box to indicate that the system is low on memory, the strings pointed to by the pszMainInstruction and pszWindowTitle parameters should not be taken from a resource file since an attempt to load the resource may fail.

If you create a task dialog while a dialog box is present, use a handle to the dialog box as the hWndParent parameter. The hWndParent parameter should not identify a child window, such as a control in a dialog box.

Use this function to create a dialog with text and buttons, when a simple MessageBox is not adequate. To achieve more functionality, use TaskDialogIndirect.

The following example code, to be included as part of a larger program, shows how to create a task dialog and capture input.


int nButtonPressed = 0;
TaskDialog(NULL, hInst, 
    MAKEINTRESOURCE(IDS_APPLICATION_TITLE),
    MAKEINTRESOURCE(IDS_DOSOMETHING), 
    MAKEINTRESOURCE(IDS_SOMECONTENT), 
    TDCBF_OK_BUTTON | TDCBF_CANCEL_BUTTON,
    TD_WARNING_ICON, 
    &nButtonPressed);

if (IDOK == nButtonPressed)
{
    // OK button pressed
}
else if (IDCANCEL == nButtonPressed)
{
    // Cancel pressed
}

Function Information

Minimum DLL Versioncomctl32.dll version 6
HeaderDeclared in commctrl.h, include commctrl.h
Import librarycomctl32.lib
Minimum operating systems Windows Vista

See Also

Dialog Boxes


Community Content

6XGate
Based on actual use.
I have found a notable inaccuracies and inconsistancy that this page states about the TaskDialog function. First, if the hInstance parameter is given a NULL, then the pszIcon may be NULL to still show no icon. Also if pszMainInstruction is NULL, then no text is shown for the main instruction portion of the dialog, not even the applications filename.
Tags : contentbug

Gideon7
TaskDialog truncates text
Note: TaskDialog will truncate the text in pszContent if it contains a string longer than approximately 48 characters with no intervening spaces, such as a file path. The truncation will display ellipses ('...'). This behavior is different from MessageBox, which automatically widens the box as needed.

The truncation limit increases if the TaskDialog has sufficient buttons or other controls to widen the window.
Tags : taskdialog

Hans-Gerd Theunissen
Minimum DLL Version
To be clear: The minmum version of comctl32.dll for TaskDialog and TaskDialogIndirect is 6.1 as shipped with Vista. Version 6.0 was shipped with XP and is not (yet) upgraded.

Page view tracker