본문 바로가기

[MFC] Window 창 크기 조정 sdi로 프로젝트를 생성했다고 가정하고, MainFrm.cpp의 BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)에서 cs.cx = 1024; //가로 크기 cs.cy = 768; //세로 크기 cs.style &= ~WS_THICKFRAME; //창 크기 조절 기능 비활성화 cs.style &= ~WS_MAXIMIZEBOX; //창 최대화버튼 비활성화 이렇게 되면 창 크기가 위에서 입력한 것으로 고정된다. 하지만 여기서 끝이 아님!! 기본 생성되는 ~(프로젝트명)App.cpp파일로 가서 InitInstance() 함수 내에 SetRegistryKey(_T("로컬 응용 프로그램 마법사에서 생성된 응용 프로그램")); 를 찾아 이 다음에(SetRegistryKey(.. 더보기
[English] Writing Topics 1. 어떤이는 정부는 public services에만 투자하여야만 하고 arts (music and painting) 에는 돈을 낭비하지 말아야 한다고 한다고 한다. 이 의견에 대한 당신의 의견은? 2. more and more centre-town stores are replaced by out-of-town big stores.As a result,more and more people have to by cars in order to get to those 'far away'stores. 3. Some people think people have benefited from modern commutations technology, other people think some people have not .. 더보기
[C/C++] ReadFile, WriteFile /****************************************************************** * Function Name | WriteFile(CString strFilePath, CString strWrite) * Details | 특정 경로에 데이터를 저장 * Programmer | 김 경 환 * Parameter | * Return Value | CString strFilePath, CString strWrite *******************************************************************/ BOOL ToolDBHandler::WriteFile(CString strFilePath, CString strWrite) { ofstre.. 더보기