- postman collection variables
- postman pre-request
- postman excel
- Intellij
- 다빈치 리졸브
- Android/iOS Developer
- emplace_back
- postman csv
- postman automations
- postman tests
- oracle
- LSL_Script
- web developer
- solidity
- 프런트엔드
- UI/UX Engineer
- 우수한 프런트 개발자
- C++
- postman session
- Android
- postman
- Java
- Interaction developer
- postman html parse
- Unity
- MFC
- Front-end developer
- postman collection
- 좋은 개발자
- c#
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Today
- Total
목록[Develop] Native/Native (18)
david's daily developer note
이글에서는 MFC 리소스 편집기의 텍스트가 깨지는 현상에 대한 수정 방안 하나를 정리. (Visual studio 2012 이하) MFC 리소스뷰에서 변경하고자 하는 리소스를 선택한 후 오른쪽마우스 버튼을 눌러 나오는 팝업에서 Properties 를 선택, 리소스 카테고리 문화권(Language) 부분의 내용을 Englis(U.S) 에서 Korean 으로 바꾼다 모든 변경 작업을 완료한 후, 전체 다시 빌드를 수행하고 변경된 결과가 잘 나오는지 확인 바로 적용이 안될 경우, 현재 프로그램 상태가 레지스트리에 저장되어 그러므로, 레지스트리 편집기에서 아래 작업을 수행HKEY_CURRENT_USER/Software/자신 프로그램의 레지스트리키/의 프로젝트를 삭제하고, 리빌드후 다시 확인
VC++ 에서 툴바 이미지를 투명하게 만드는 방법은 다음과 같습니다. * 배경을 RGB( 192, 192, 192 ) 로 칠한다. * 이미지 color depth 를 8 bit 로 수정한다. 이미지 color depth 가 32 bit 이면 배경을 RGB( 192, 192, 192 ) 로 칠하여도 투명하게 보이지 않습니다.
View에서 MainFrame CMainFrame* pMainFrame = DYNAMIC_DOWNCAST(CMainFrame, GetParentFrame()); if (pMainFrame == NULL) { return; }
//전역 윈도우 좌표 POINT gPt; //상태바 위치: CRect statusRect; this->GetWindowRect(statusRect); CPoint newPt; newPt.x = gPt.x - statusRect.left; newPt.y = gPt.y - statusRect.top; // Tip 최상위 윈도우 위치 및, 부모 윈도우 위치 가져오기 CRect windowPos; AfxGetMainWnd() -> GetWindowRect( &windowPos ); this->GetParentFrame()->GetWindowRect( windowPos );