The WM_TCARD message is sent to an application that has initiated a training card with Windows Help. The message informs the application when the user clicks an authorable button. An application initiates a training card by specifying the HELP_TCARD command in a call to the WinHelp function.
WM_TCARD idAction = wParam; dwActionData = lParam;
Value |
Meaning |
IDABORT |
The user clicked an authorable Abort button. |
IDCANCEL |
The user clicked an authorable Cancel button. |
IDCLOSE |
The user closed the training card. |
IDHELP |
The user clicked an authorable Windows Help button. |
IDIGNORE |
The user clicked an authorable Ignore button. |
IDOK |
The user clicked an authorable OK button. |
IDNO |
The user clicked an authorable No button. |
IDRETRY |
The user clicked an authorable Retry button. |
HELP_TCARD_DATA |
The user clicked an authorable button. The lParam parameter contains a long integer specified by the help author. |
HELP_TCARD_NEXT |
The user clicked an authorable Next button. |
HELP_TCARD_OTHER_CALLER |
Another application has requested training cards. |
IDYES |
The user clicked an authorable Yes button. |
The return value is ignored; use zero.