デスクトップの画面サイズを取得する方法は、下記の2つの方法がある
・GetDeviceCapsを使用する方法
HDC hDC;
hDC = GetDC(GetDesktopWindow());
int nScrSizeX = GetDeviceCaps(hDC, HORZRES);
int nScrSizeY = GetDeviceCaps(hDC, VERTRES);
ReleaseDC(GetDesktopWindow(),hDC);・SystemParametersInfoを使用する
RECT rect;
SystemParametersInfo( SPI_GETWORKAREA, 0, &rect, 0 );
投稿者 NMVL : 2004年6月18日 15:41