TaskDialog function
Applies to: desktop apps only
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( __in HWND hWndParent, __in HINSTANCE hInstance, __in PCWSTR pszWindowTitle, __in PCWSTR pszMainInstruction, __in PCWSTR pszContent, __in TASKDIALOG_COMMON_BUTTON_FLAGS dwCommonButtons, __in PCWSTR pszIcon, __out int *pnButton );
Parameters
- hWndParent [in]
-
Type: HWND
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]
-
Type: HINSTANCE
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]
-
Type: PCWSTR
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]
-
Type: PCWSTR
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]
-
Type: PCWSTR
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]
-
Type: TASKDIALOG_COMMON_BUTTON_FLAGS
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.
- pszIcon [in]
-
Type: PCWSTR
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.
- pnButton [out]
-
Type: int*
When this function returns, contains a pointer to an integer location that receives one of the following values:
Value Description 0 Function call failed. Refer to return value for more information. IDCANCEL Cancel button was selected, Alt-F4 was pressed, Escape was pressed or the user clicked on the close window button. IDNO No button was selected. IDOK OK button was selected. IDRETRY Retry button was selected. IDYES Yes button was selected. If this value is NULL, no value is returned.
Return value
Type: HRESULT
This function can return one of these values.
| Return code | Description |
|---|---|
|
The operation completed successfully. |
|
There is insufficient memory to complete the operation. |
|
One or more arguments are not valid. |
|
The 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.
Because task dialog boxes use the correct system-defined UI elements, you should use them instead of using message boxes created with the MessageBox function. 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
}
Requirements
|
Minimum supported client | Windows Vista |
|---|---|
|
Minimum supported server | Windows Server 2008 |
|
Header |
|
|
Library |
|
|
DLL |
|
See also
Send comments about this topic to Microsoft
Build date: 3/6/2012
- 1/8/2012
- Axel Rietschin
#define TD_SHIELD_ICON MAKEINTRESOURCEW(-4)
This can be used as pszIcon to display a UAC shield icon in the task dialog.
- 2/23/2011
- feuerblitz03
- 4/24/2011
- feuerblitz03
#pragma comment(lib, "comctl32.lib") // For TaskDialog
Furthermore, you must do extra work to use this for a pure win32 app, else you will get "ordinal 344 could not be located in the dynamic link library comctl32.dll" at runtime. You will still get this error, even with below, if run on XP, as it is not the required minimum operating system. Without below, the 344 error occurs even on win7. I've heard a MFC app just works, but not a pure win32 app.
#if defined _M_IX86
#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_IA64
#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#elif defined _M_X64
#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
#else
#pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#endif
- 3/8/2010
- markAyoung
- 3/8/2010
- markAyoung
The truncation limit increases if the TaskDialog has sufficient buttons or other controls to widen the window.
- 4/17/2009
- Hans-Gerd Theunissen