Kategoriler
Arşiv
| Pt | Sa | Ça | Pe | Cu | Ct | Pa | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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 | |||||||
E-bülten
Haberlere abone olun:
Bu yazıyı beğendiniz mi?
(toplam 1 oy)
procedure TForm1.Timer1Timer(Sender: TObject);
var
m:tmouse;
begin
m:=tmouse.create;
form1.Left:=m.CursorPos.x;
form1.top:=m.CursorPos.y;
m.Free;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong( Handle,GWL_STYLE,GetWindowLong( Handle, GWL_STYLE )and not WS_CAPTION );
SetWindowLong(Application.Handle,GWL_EXSTYLE, WS_EX_TOOLWINDOW);
SetWindowPos(Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE or SWP_NOSIZE);
end;
end.








