Group: Common Dialog Box - Library: comdlg32
How to display advanced Task Dialog (Vista)
HRESULT TaskDialogIndirect(
const TASKDIALOGCONFIG *pTaskConfig,
int *pnButton,
int *pnRadioButton,
BOOL *pfVerificationFlagChecked
); DECLARE INTEGER TaskDialogIndirect IN comctl32;
STRING pTaskConfig,;
INTEGER @pnButton,;
INTEGER @pnRadioButton,;
INTEGER @pfVerificationFlagChecked pTaskConfig [in] Pointer to a TASKDIALOGCONFIG structure that contains information used to display the task dialog.
pnButton [out] Address of a variable that receives the Id of the pressed button.
pnRadioButton [out] Address of a variable that receives one of the button IDs specified in the pRadioButtons member of the pTaskConfig parameter.
pfVerificationFlagChecked [out] Address of a variable that receives the Cheked status of the checkbox.
Returns S_OK (0) on success.
The task dialog contains application-defined icons, messages, title, verification check box, command links, push buttons, and radio buttons. This function can register a callback function to receive notification messages.
This is Unicode function. The minimum OS is Vista.
Home 