programing/MFC10 ShellExecute - 프로세스 생성할 수 있는 함수 - 운영체제가 직접 제공하는 것이 아니라 쉘이 제공함 - 윈도우에서 탐색기는 항상 설치 되므로 언제든지 사용 가능 - HINSTANCE ShellExecute(HWND hWnd, IpOperation, lpFile, lpParameters, lpDirectory, nShowCmd);> IpOperationeditLaunches an editor and opens the document for editing. If lpFile is not a document file, the function will fail.exploreExplores a folder specified by lpFile.findInitiates a search beginning in the directo.. 2017. 1. 11. TRACE - MFC같이 비쥬얼 작업 할때 Console에서 처럼 cout을 사용하지 못하는 경우cout 대용으로 사용가능- 디버그 모드에서만 동작 2017. 1. 11. API/MFC에서 Alt키 (VK_MENU) 막는 방법 LRESULT CALLBACK CNsApp::WndProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam ) { switch( message ) { //////////////////////////////////////////////// case WM_SYSKEYDOWN: case WM_KEYDOWN: //alt키 막아놈 switch(wParam) { case VK_MENU : break; } break; ///////////////////////////////////////////////// default: { return DefWindowProc(hWnd, message, wParam, lParam); } } return NULL; } VK_MENU .. 2014. 12. 21. Using the List Control http://www.codeproject.com/Articles/608/Using-the-List-Control // 리스트 컨트롤 m_ListCtrl.SetExtendedStyle(LVS_EX_SUBITEMIMAGES); HIMAGELIST hList = ImageList_Create(x, y, ILC_COLOR24 | ILC_MASK, 1, 1); m_ImageList.Attach(hList); m_ListCtrl.SetImageList(&m_ImageList, LVSIL_NORMAL); // Gdi+로 이미지 로드하여서 크기 바꾼다음 CBitmap으로 받음 HBITMAP hBitmap; Bitmap* pBitmap = NULL; CBitmap* pbitmap = NULL; Image* pImage .. 2014. 7. 31. 이전 1 2 3 다음