다음을 통해 공유


CTaskDialog::IsSupported

응용 프로그램을 실행 하는 컴퓨터를 지원 하는지 여부를 결정 하는 CTaskDialog.

static BOOL IsSupported();

반환 값

TRUE컴퓨터를 지 원하는 경우는 CTaskDialog. FALSE그렇지 않으면.

설명

이 함수를 사용 하 여 응용 프로그램을 실행 하는 컴퓨터를 지 원하는 경우 런타임에 결정 하는 CTaskDialog 클래스.컴퓨터에서 지원 하지 않는 경우는 CTaskDialog, 사용자에 게 정보 통신의 다른 메서드를 제공 해야 합니다.사용 하려고 하면 응용 프로그램에서 충돌이 발생할 수 있는 CTaskDialog 지원 하지 않는 컴퓨터는 CTaskDialog 클래스.

예제

    // 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);
    }

요구 사항

헤더: afxtaskdialog.h

참고 항목

참조

CTaskDialog 클래스

계층 구조 차트