블로그 이미지
worhkd2

calendar

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
2012. 2. 14. 17:34 프로그래밍/C++

int screen_x, screen_y;
 screen_x = (int)GetSystemMetrics(SM_CXSCREEN);
 screen_y = (int)GetSystemMetrics(SM_CYSCREEN);
 
 MoveWindow(0,0,screen_x, screen_y);
 Navigate(_T("http://www.naver.com"));

ScreenToClient(&ptChild);

'프로그래밍 > C++' 카테고리의 다른 글

MFC(C++) 해상도 변경  (0) 2011.11.10
CString 클래스의 Find(), ReverseFind() 함수  (0) 2011.10.18
AfxExtractSubString() API함수  (0) 2011.10.18
MFC AfxMessageBox 리턴값  (0) 2011.09.20
MFC ListCtrl  (0) 2011.09.19
posted by worhkd2