 |
TaskDialogIndirect ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Creates, displays, and operates a task dialog. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HRESULT TaskDialogIndirect(
const TASKDIALOGCONFIG *pTaskConfig,
int *pnButton,
int *pnRadioButton,
BOOL *pfVerificationFlagChecked
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER TaskDialogIndirect IN comctl32;
STRING pTaskConfig,;
INTEGER @pnButton,;
INTEGER @pnRadioButton,;
INTEGER @pfVerificationFlagChecked
|
 |
 |
 |
| Parameters: |
 |
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. |
 |
 |
| Return value: |
 |
| Returns S_OK (0) on success. |
 |
 |
| Usage: |
 |
STORE 0 TO nButtonSelected, nRadioSelected, nChecked
nResult = TaskDialogIndirect(cTaskDialogConfig,;
@nButtonSelected, @nRadioSelected, @nChecked)
|
 |
 |
| My comment: |
 |
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. |
 |
 |
| Word Index links for the TaskDialogIndirect : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2009-12-02 22:29:52 | | Modified: | 2009-12-02 23:29:39 | Visited in last 7 days: 10 |