Scalabium Software |
|
Knowledge for your independence'. | |
Home Delphi and C++Builder tips |
#77: How can I get a mouse position? |
|
Sometimes in development you must to detect the current position of mouse. You can use the GetCursorPos function. In the next example I shows how to popup the some TPopupMenu component in point, where user click a mouse button: var P: TPoint; begin GetCursorPos(P); yourPopupMenu.Popup(P.X, P.Y); end;
|
|
Copyright© 1998-2024, Scalabium
Software. All rights reserved. |