2021. 3. 6. 23:41 윈도우/참고

종료도 귀찮아 작업 표시줄에 넣어놓고 쓰고 있습니다.

 

바로가기로 등록해서 쓰면 편하답니다.

 

C:\Windows\System32\shutdown.exe -s -t 5

posted by townone
2015. 9. 11. 15:00 윈도우/참고

CString getMyLastErrorMsg(CString strFunction)
{
    LPVOID lpMsgBuf;
    DWORD dw = GetLastError();

    FormatMessage(
        FORMAT_MESSAGE_ALLOCATE_BUFFER |
        FORMAT_MESSAGE_FROM_SYSTEM |
        FORMAT_MESSAGE_IGNORE_INSERTS,
        NULL,
        dw,
        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
        (LPTSTR) &lpMsgBuf,
        0, NULL );

 CString strMsg;
 strMsg.Format(_T("%s failed with error %d: %s"), strFunction, dw, (LPCTSTR)lpMsgBuf);

    LocalFree(lpMsgBuf);

 return strMsg;
}

posted by townone
2015. 9. 8. 11:50 카테고리 없음

fatal error C1189: #error : Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version.

 

위 오류는 라이브러리 프로젝트 속성 중 '구성 속성 > 일반 > MFC 사용' 항목의 값을 '공유 DLL에서 MFC 사용' 으로 바꾸면 해결 될 수 있습니다.

 

 

 

posted by townone