美文网首页
MFC: CFile

MFC: CFile

作者: dyg540 | 来源:发表于2017-05-10 09:12 被阅读0次

    CFile file;

    CFileException pError;

    if (file.Open(L"D:\\aa.txt", CFile::modeCreate || CFile::modeReadWrite, &pError))

    {

    TCHAR str_aa[] = L"AAAwwwww";

    file.Write(str_aa, sizeof(str_aa));

    file.Flush();

    file.Close();

    }

    else

    {

    TCHAR szError[1024];

    pError.GetErrorMessage(szError, 1024);

    AfxMessageBox(szError);

    }

    /*CColorDialog dlg(RGB(255, 0, 0), CC_FULLOPEN);

    dlg.DoModal();*/

    CColorDialog dlg;

    if (IDOK == dlg.DoModal())

    {

    COLORREF color = dlg.GetColor();

    /*TRACE("RGB value of the selected color - red = %u, green = %u, blue = %u\n",

    GetRValue(color), GetGValue(color), GetBValue(color));*/

    //BYTE r = GetRValue(color);

    //char *str = (char *)r;

    //AfxMessageBox((LPCTSTR)str);

    this->SetBackgroundColor(color);

    }

    相关文章

      网友评论

          本文标题:MFC: CFile

          本文链接:https://www.haomeiwen.com/subject/louwtxtx.html