- Front-end developer
- postman excel
- postman pre-request
- UI/UX Engineer
- emplace_back
- C++
- 우수한 프런트 개발자
- postman html parse
- 좋은 개발자
- web developer
- postman collection
- postman
- Interaction developer
- oracle
- postman tests
- LSL_Script
- MFC
- postman csv
- 프런트엔드
- postman session
- postman collection variables
- Android
- Java
- 다빈치 리졸브
- Unity
- solidity
- c#
- Intellij
- postman automations
- Android/iOS Developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
함수 호출되는 시점에, 특정 키가 동작중인지, 중단되었는지 여부 및 키가 눌렸는지 체크한다. if ((GetAsyncKeyState(VK_SHIFT) & 0x8000) != 0){ return; } MS 공식 예제 while (GetMessage(&msg, nullptr, 0, 0)) { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { TranslateMessage(&msg); DispatchMessage(&msg); } switch (msg.message) { case WM_KEYDOWN: if ((GetAsyncKeyState(VK_ESCAPE) & 0x01) && bRunning) { Stop(); } break; } } Virtual-Key ..
메시지: WM_GETMINMAXINFO 구현: if(GetSafeHwnd() != NULL) { lpMMI->ptMinTrackSize.x = 500; lpMMI->ptMinTrackSize.y = 300; } else CBCGPMDIFrameWnd::OnGetMinMaxInfo(lpMMI);
//선언 #include "atlcoll.h" CAtlMap myCatl; //키가 문자열인 경우 CAtlMapmyCatl; //키가 문자열이 아닌 모든 경우 //삽입 myCatl.SetAt(Key ,Value); //삭제 myCatl.RemoveKey(Key); myCatl.RemoveAll(); //검색 CAtlMap::CPair* pPair = myCatl.Lookup( Key ); // Key값으로 Value를 리턴(BOOL)한다. //시작위치 POSITION pos = myCatl.GetStartPosition(); //다음위치 myCatl.GetNext(POSITION); //리턴값 : CPair * myCatl.GetNextValue(POSITION); //리턴값 : Value
void CMyRichEditView::OnUpdateLineNumber(CCmdUI *pCmdUI) { int nLine = GetRichEditCtrl().LineFromChar(-1) + 1; CString string; string.Format(_T("Line %d"), nLine); pCmdUI->Enable(TRUE); pCmdUI->SetText(string); } 상기 코드는 CCmdUI 클래스를 사용하는 MSDN 예시이다. 코드에서 인자인 pCmdUI는 메인 메뉴를 가르키는 포인터이다. 관련하여 자주 쓰는 함수를 정리한다. CCmdUI::Enable 함수 : 메뉴 항목을 선택할 수 있게(TRUE) 또는 선택할 수 없게(FALSE)한다. CCmdUI::SetCheck 함수 : 메뉴 항목을 ..