on click event i would like to extract the x,y cordinates of the mouse, in fact i would like them in relation to the image but in relation to the form or window is just as good.
|
|
Mouse.CursorPos contains the TPoint, which in turn contains the X and Y position. This value is in global coordinates, so you can translate to your form by using the ScreenToClient routine which will translate screen coordinates to window coordinates. According to the Delphi help file, Windows.GetCursorPos can fail, Mouse.CursorPos wraps this to raise an EOsException if it fails.
|
|||
|
|
|
|
How about this?
Found this online somewhere once and saved it in my codesnippet DB :) This page will probably solve all your questions however... There appear to be functions to go from client to screen coordinates and back etc.. Good luck! |
||
|
|
|
|
As others have said, you can use Mouse.CursorPos or the GetCursorPos function, but you can also just handle the OnMouseDown or OnMouseUp event instead of OnClick. This way you get your X and Y values as parameters to your event handler, without having to make any extra function calls. |
||
|
|
|
|
The The alternative is to handle the |
||
|
|
|
|
doesnt work ! u didnt write this code using which library... |
||
|
|
