본문 바로가기

Programming

(68)
728x90
반응형

C++, MFC。모달리스(Modaless) 최상단 위치(GetDesktopWindow) CSubMain m_rcSubMain = new CSubMain(); m_rcSubMain->Create(IDD_SUB_DIALOG, CWnd::GetDesktopWindow());
Error。read access violation. Exception thrown: read access violation. pThread->m_pMainWnd-> was 0xCCCCCCCC. If there is a handler for this exception, the program may be safely continued. [Programming/C++, MFC] - C++, MFC。Class Name 설정
C++, MFC。Class Name 설정 보호되어 있는 글입니다.
C++, MFC。Windows Version(NetWkstaGetInfo) 보호되어 있는 글입니다.
C++, MFC。Control을 최상위로 위치 GetDlgItem(IDC_STATIC_MAIN)->BringWindowToTop();
C++, MFC。작업표시줄의 프로그램 아이콘 숨김 ModifyStyleEx(WS_EX_APPWINDOW, WS_EX_TOOLWINDOW);
C++, MFC。자동 배율 조정으로 해상도에 따른 사이즈 고정 UI를 이미지로 디자인한 경우 다이얼로그 사이즈가 변경되는 현상으로 해상도와 상관없이 사이즈 고정 더보기 https://learn.microsoft.com/ko-kr/previous-versions/dotnet/netframework-3.0/ms229605(v=vs.85)?redirectedfrom=MSDN Windows Forms의 자동 배율 조정 Windows Forms의 자동 배율 조정 아티클 08/21/2007 읽는 데 13분 걸림 이 문서의 내용 --> 자동 배율 조정 기능을 사용하면 한 컴퓨터에서 특정 해상도 또는 시스템 글꼴로 표시되도록 설계된 폼과 그 컨 learn.microsoft.com
Error。Expression: ("Buffer too small", 0) // 변경 전 CStringA sPath(cPath); // char cPath[MAX_PATH]; sPath.Format("%s\\*.*", sPath); strcpy(cPath, sPath); // 변경 후 CStringA sPath1(pPath); // char cPath[MAX_PATH]; CStringA sPath2; sPath2.Format("%s\\*.*", sPath1); strcpy(pPath, sPath2);
728x90
반응형