nSonic #206 – Mac – still und leise
Unverhofft kommt oft und so besaß Apple die Dreistigkeit, einen ganzen Stapel an neuen Produkten einfach mal so, völlig lautlos und ganz ohne…
Mouse: How to “HotTrack” any control
[code lang=”delphi”]// We have to override the WndProc procedure procedure WndProc(var Message : TMessage); override; procedure TForm1.WndProc(var Message : TMessage); begin // Here…
Mouse: How to get the MousePosition
[code lang=”delphi”]var ThePoint: TPoint; begin GetCursorPos(ThePoint); end; [/code] [tags]Delphi, Misc, Mouse[/tags]
Mouse: How to get the MousePosition (D4)
In Delphi 4 you can use the Mouse global variable. [code lang=”delphi”]begin x := Mouse.CursorPos.X; y := Mouse.CursorPos.Y; end; [/code] [tags]Delphi, Misc, Mouse[/tags]