728x90
반응형
function IsMaxWindow: boolean;
var
Hnd: HWND;
Rect: TRect;
begin
Result := False;
Hnd := GetForegroundWindow(); // 현재 작업중인 윈도우를 알아내는 함수
GetWindowRect(Hnd, Rect);
if (Rect.Left <> Rect.Top) then
exit;
if (Rect.Right = Screen.Width) and (Rect.Bottom = Screen.Height) then
Result := True; // 전체화면
end;
728x90
반응형
'삽질 > Delphi' 카테고리의 다른 글
[Delphi] ListBox 내용을 클립보드에 복사하기 (0) | 2011.07.15 |
---|---|
[Delphi] 델파이에서 파일쓰기 (0) | 2011.06.15 |
[Delphi] 폼 드래그해서 이동하기 (0) | 2011.05.16 |
[Delphi] 하위 폴더까지 한번에 생성하기 (0) | 2011.05.16 |
[Delphi] 웹페이지 로딩 완료 체크하기 (0) | 2011.04.07 |
댓글