로그인

검색

MoA
조회 수 6691 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄

CString strItem;
UINT unState;

// ListControl에 체크박스 추가
m_List.SetExtendedStyle( LVS_EX_CHECKBOXES );

m_List.InsertColumn(0, _T("Item"), LVCFMT_LEFT, 60);

for(int i=0; i<10; i++)
{
strItem.Format(_T("Item%d"), i+1);
m_List.InsertItem(i, strItem);

// 체크하기
m_List.SetItemState(i, UINT(2 << 12), LVIS_STATEIMAGEMASK);

if(i>5)
// 체크 해제
m_List.SetItemState(i, UINT(1 << 12), LVIS_STATEIMAGEMASK);

// 체크 되어 있는지 확인
unState = m_List.GetItemState(i, LVIS_STATEIMAGEMASK);
}
?

  1. Programming 게시판 관련

    Date2014.11.01 CategoryTool/etc ByMoA Views26230
    read more
  2. [농장게임 만들기] 1. Nubcake Farms 게임 소개

    Date2014.04.26 CategoryPython ByOBG Views6095
    Read More
  3. [게임 만들기] 강좌 진행 예정

    Date2014.04.26 CategoryPython ByMoA Views5818
    Read More
  4. 2048게임 높은 점수 얻기 위한 알고리즘

    Date2014.03.29 CategoryAlgorithm ByMoA Views4817
    Read More
  5. UI Guidelines

    Date2014.03.11 CategoryTool/etc ByMoA Views5291
    Read More
  6. 자바스크립트 물리엔진 ㄷㄷ

    Date2014.03.10 CategoryTool/etc ByMoA Views5367
    Read More
  7. 다이얼로그 기반에서 메뉴 내용이 갱신 안되는 문제 해결

    Date2014.02.13 CategoryAPI/MFC ByMoA Views6316
    Read More
  8. 파이썬에서 C모듈 사용하기

    Date2014.02.10 CategoryPython ByMoA Views6127
    Read More
  9. CSpreadSheet

    Date2014.02.03 CategoryLibrary ByMoA Views4595
    Read More
  10. 워게임 사이트 정리

    Date2014.01.27 CategoryReversing ByMoA Views5312
    Read More
  11. RAND_MAX

    Date2014.01.19 CategoryC/C++ ByMoA Views4842
    Read More
  12. OpenCV 이용한 템플릿 매칭

    Date2014.01.16 CategoryPython ByMoA Views5713
    Read More
  13. Quake 3 source code and review

    Date2014.01.15 CategoryTool/etc ByMoA Views5403
    Read More
  14. 화면 캡쳐 소스

    Date2014.01.14 CategoryPython ByMoA Views5390
    Read More
  15. __FILE__ __LINE__ __FUNCTION__ 등 매크로

    Date2014.01.02 CategoryC/C++ ByMoA Views5637
    Read More
  16. 유용한 라이브러리 소개

    Date2013.12.27 CategoryTool/etc ByMoA Views5314
    Read More
  17. Embedding Python in C/C++

    Date2013.12.23 CategoryPython ByMoA Views4938
    Read More
  18. SciPy and NumPy

    Date2013.12.23 CategoryPython ByMoA Views4903
    Read More
  19. 다국어를 위한 StringTable, LoadString

    Date2013.12.22 CategoryAPI/MFC ByMoA Views7423
    Read More
  20. WTL 정리

    Date2013.12.22 CategoryAPI/MFC ByMoA Views6153
    Read More
  21. GetLastInputInfo 함수

    Date2013.12.06 CategoryAPI/MFC ByMoA Views5913
    Read More
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 17 Next
/ 17