Keyword Macro

Full text search for "HWND"


Display context of search results
Case-sensitive searching
  • C++/(Windows)Z-Order 상위 윈도 비교 . . . . 5 matches
         int GetZOrder(HWND hTarget)
          HWND hNext = ::GetTopWindow(NULL);
          hNext = ::GetNextWindow(hNext, GW_HWNDNEXT);
         HWND hWnd1 = ::FindWindow(NULL, L"Daum - 모으다 잇다 흔들다 - Internet Explorer");
         HWND hWnd2 = ::FindWindow(NULL, L"Google - Internet Explorer");
         str.Format(_T("Daum %d; Google %d"), GetZOrder(hWnd1), GetZOrder(hWnd2));
  • C++/(Windows)캡처 윈도우 . . . . 3 matches
          HWND hHwnd = NULL;
          hHwnd = GetDesktopWindow();
          hHwnd = GetDesktopWindow();
          HWND hBackWnd = GetDesktopWindow();
          GetHWNDFromPID(pid, NULL, &hBackWnd, rect);
          hHwnd = hBackWnd;
          if (hHwnd == NULL)
          hHwnd = GetDesktopWindow();
          CWnd* pWnd = CWnd::FromHandle(hHwnd);
          ::GetClientRect(hHwnd, rect);
  • C++/DwmDropShadow . . . . 3 matches
         typedef HRESULT (WINAPI *lpfnDwmSetWindowAttribute)(HWND hWnd, DWORD dwAttribute, _In_ LPCVOID pvAttribute, DWORD cbAttribute);
         typedef HRESULT (WINAPI *lpfnDwmExtendFrameIntoClientArea)(HWND hWnd, _In_ const MARGINS *pMarInset);
         HRESULT DwmDropShadow(HWND hWnd)
          hr = DwmSetWindowAttribute(hWnd, 2, &attr, sizeof(int));
          hr = DwmExtendFrameIntoClientArea(hWnd, &margins);
  • C++/모든 윈도우 메시지 종류 HEX DECIMAL 값 . . . . 3 matches
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>PSM_GETCURRENTPAGEHWND</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>PSM_HWNDTOINDEX</P></TD></TR>
         <P style="PADDING-BOTTOM: 0px; MARGIN: 0.5em 0px 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; FONT-SIZE: 12px; PADDING-TOP: 0px" class=line862>PSM_INDEXTOHWND</P></TD></TR>
  • C++/모든 자식 윈도우 검색 . . . . 3 matches
         #keywords C++,HWND,윈도우
         void FindWindowChild(HWND hParamWnd)
          HWND hFindWnd = ::FindWindowEx(hParamWnd, NULL, NULL, NULL);
         FindWindowChild(GetDesktopWindow()->GetSafeHwnd()); 을 하면 모든 윈도우를 검색한다.
  • C++/(MFC)워커 스레드와 이벤트를 이용한 동기화 . . . . 2 matches
          CWnd* pWnd = CWnd::FromHandle((HWND)pParam);
          ::PostMessage((HWND)pParam, WM_THEMECHANGED, 0, 0);
  • C++/(Windows)IE 탭 종료 . . . . 2 matches
         HWND hWnd = NULL;
         hWnd = ::FindWindow(_T("IEFrame"), NULL);
         if (hWnd)
          HWND hWndChild = NULL;
          hWndChild = ::FindWindowEx(hWnd, 0, _T("Frame Tab"), NULL);
          if (hWndChild)
          hWndChild = ::FindWindowEx(hWndChild, 0, _T("TabWindowClass"), NULL);
          if (hWndChild)
          ::PostMessage(hWndChild, WM_CLOSE, 0, 0);
          ::PostMessage(hWnd, WM_CLOSE, 0, 0);
  • C++/(MFC)디렉토리 선택 다이얼로그 열기 . . . . 1 match
         static int CALLBACK BrowseCallbakProc(HWND hWnd, UINT uMsg, LPARAM lParam, LPARAM pData)
          bInfo.hwndOwner = GetSafeHwnd();
  • C++/(MFC)콤보박스의 Edit 부분 readonly . . . . 1 match
         HWND h_wnd = ::FindWindowEx(p_combo->m_hWnd, NULL, _T("Edit"), NULL);
  • C++/(Windows)IE 모두 종료 . . . . 1 match
         BOOL CALLBACK CloseIEProc(HWND hWnd, LPARAM lParam)
          GetClassName(hWnd, sz, SZ_SIZE);
          PostMessage(hWnd, WM_CLOSE, 0, 0);
  • C++/(Windows)파일 처리 . . . . 1 match
         PathSearchAndQualify( "%SystemRoot%system32\notepad.exe", buffer, MAX_PATH) = c:\windows\system32\notepad.exe;</p></blockquote><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#0000ff" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"><strong style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">void PathSetDlgItemPath( HWND hDlg, int id, LPCSTR pszPath )</strong>;</font></p><blockquote dir="ltr" style="margin: 5px 0px 5px 5px; padding: 0px 0px 0px 16px; border: 0px; line-height: 1.3; font-family: 돋움, Dotum, AppleGothic, sans-serif; background-image: url(http://ts.daumcdn.net/custom/blog/29/294052/skin/images/iconBlockquote.gif); background-position: initial initial; background-repeat: no-repeat no-repeat;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"></font><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">Sets the text of a child control in a window or dialog box, using PathCompactPath to ensure the path fits in the control.</font></p><p dir="ltr" style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;">PathCompactPath와 유사하다. id로 지정된 Dialog Item에 출력하기 적합한 길이로 경로를 잘라준다.</p></blockquote><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#0000ff" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">LPCTSTR PathSkipRoot( LPCTSTR pszPath );</font></p><blockquote dir="ltr" style="margin: 5px 0px 5px 5px; padding: 0px 0px 0px 16px; border: 0px; line-height: 1.3; font-family: 돋움, Dotum, AppleGothic, sans-serif; background-image: url(http://ts.daumcdn.net/custom/blog/29/294052/skin/images/iconBlockquote.gif); background-position: initial initial; background-repeat: no-repeat no-repeat;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;"></font><p style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;"><font color="#808080" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3;">Parses a path, ignoring the drive letter or Universal Naming Convention (UNC) server/share path elements.</font></p><p dir="ltr" style="margin-right: 0px; margin-left: 0px; padding-right: 0px; padding-left: 0px; border: 0px; line-height: 1.3;">루트 경로를 제거한다. 로컬 경로인 경우 드라이브문자(c:\)가 지워지고, UNC경로인 경우 서버이름, 공유폴더 이름이 제거된다.
  • C++/SAL 표준 표식 언어 . . . . 1 match
         </p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; "> void MyPaintingFunction(</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __in HWND hwndControl,               -- An initialized read-only parameter.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __in_opt HDC hdcOptional,            -- An initialized read-only parameter that might be NULL.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">     __inout IPropertyStore *ppsStore     -- An initialized parameter that may be freely used</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">                                          --   and modified.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; "> );</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; line-height: 1.6; ">
  • LocalKeywords . . . . 1 match
         C++ HWND 윈도우
Found 13 matching pages out of 1230 total pages (0 pages are searched)

You can also click here to search title.