일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- php
- 프로그램
- 자바스크립트
- 백업
- 平野綾
- KBS
- 리눅스
- 프린터
- MFC
- VMware
- Hirano Aya
- Okazaki Ritsuko
- 마비노기
- Microsoft
- gentoo
- 오카자키 리츠코
- 한국어
- youtube
- 벤치마크
- 옥션
- 파이어폭스
- 岡崎律子
- xml
- KBS한국어능력시험
- synology
- USB메모리
- Firefox
- vbscript
- 맞춤법
- 윈도우즈
- Today
- Total
목록MFC (4)
ARCHIVE ...
구조체 typedef struct _LVITEM { UINT mask; int iItem; int iSubItem; UINT state; UINT stateMask; LPTSTR pszText; int cchTextMax; int iImage; LPARAM lParam; #if (_WIN32_IE >= 0x0300) int iIndent; #endif #if (_WIN32_WINNT >= 0x501) int iGroupId; UINT cColumns; // tile view columns PUINT puColumns; #endif #if (_WIN32_WINNT >= 0x0600) int* piColFmt; int iGroup; #endif } LVITEM, *LPLVITEM; 메소드 DWORD CLis..
선언 // CMainFrame protected: CStatusBar m_wndStatusBar; // vs 6 CMFCStatusBar m_wndStatusBar; indicator(상태바 아이템) static UINT indicators[] = { ID_SEPARATOR, // status line indicator ID_INDICATOR_CAPS, ID_INDICATOR_NUM, ID_INDICATOR_SCRL, }; 생성 // int CMainFrame::OnCreate() if (!m_wndStatusBar.Create(this)) { TRACE0("Failed to create status bar\n"); return -1; // fail to create } m_wndStatusBar.Set..
SDI에서 각 개체 얻는 방법 AppCWinApp * pApp = (CWinApp*)AfxGetApp(); MainFrameCMainFrame * pFrame = (CMainFrame *)AfxGetMainWnd(); Document CMainFrame * pFrame = (CMainFrame *)AfxGetMainWnd(); CDocument *pDoc = CDocument *)pFrame->GetActiveDocument(); View CMainFrame * pFrame = (CMainFrame *)AfxGetMainWnd(); CView *pView = (CView *)pFrame->GetActiveView(); MDI에서 각 개체 얻는 방법 AppCWinApp *pApp = (CWinApp*)Af..