CTaskDialog::IsSupported
Détermine si l'ordinateur qui exécute l'application prend en charge CTaskDialog.
static BOOL IsSupported();
Valeur de retour
SiTRUE aide CTaskDialog; FALSE sinon.
Notes
Utilisez cette fonction pour déterminer au moment de l'exécution si l'ordinateur qui exécute votre application prend en charge des applications De classe CTaskDialog.Si l'ordinateur ne prend pas CTaskDialog, vous devez fournir une autre méthode de communiquer des informations à l'utilisateur.Votre application tombera en panne si elle tente d'utiliser CTaskDialog sur un ordinateur qui ne prend pas en charge la classe d' CTaskDialog .
Exemple
// TODO: Replace the string below with the actual message to the user
CString message("Important information to the user");
// TODO: Replace the string below with the title of this project
CString title("Project Title");
CString emptyString;
if (CTaskDialog::IsSupported())
{
CTaskDialog::ShowDialog(message, emptyString, title, 0, 0,
TDCBF_OK_BUTTON);
}
else
{
AfxMessageBox(message);
}
Configuration requise
en-tête : afxtaskdialog.h