Programalama > DELPHI

Etiketler: cursor, gizlemek

Ort. 0
Puan ver:
procedure rShowCursor(bShow: BOOL);
var
  r: trect;
begin
  if not bShow then begin // Hide
    r.Top := 0;
    r.Left := GetSystemMetrics(SM_CXSCREEN)
            + GetSystemMetrics(SM_CXCURSOR);
    r.Right := r.Left;
    r.Bottom := 0;
    ClipCursor(@r);
    SetCursorPos(0,0);
  end else begin // Restore
    ClipCursor(nil);
    SetCursorPos(GetSystemMetrics(SM_CXSCREEN) div 2,
                 GetSystemMetrics(SM_CYSCREEN) div 2);
  end;
end;


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.