LISTORY

Visual Studio 2013, MFC, expected numerical dialog constant 에러 본문

IT/MFC

Visual Studio 2013, MFC, expected numerical dialog constant 에러

LiStoryTeller 2017. 5. 22. 17:26


Visual Studio 2013에서 Pictual Control을 사용할 때 자주 볼 수 있는 오류입니다.


VS 2013 버그로 .rc 파일에서 다음과같이 코드를 수정하면 됩니다.




변경 전


    CONTROL         IDB_LOGO,IDC_STATIC_LOGO,19,18,130,33,NOT WS_GROUP



변경 후


    CONTROL         IDB_LOGO,IDC_STATIC_LOGO,"Static", SS_BITMAP,19,18,130,33




Comments