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]
Packages: PlugIn Framework (Links)
> Is there any article talking about the packages and DLL, does Packages can > support the library advantages, > e.g. > 1.…
Records: How to define a ‘constant record’?
How to define constant-Records? What if you like to have a set of constants collected into a record structure? Well, it looks crazy…