Tagged Questions
-1
votes
2answers
61 views
Selecting Listitems with Drag not working
On the MouseMove event I need to select items in the Listview if my mouse click is dragging over them. My code however is not working. When I click and drag only the first item I click gets selected.
...
-3
votes
0answers
83 views
Delphi - Search for a specified Bitmap/Color/Pixel and move mouse to that region [closed]
Ok, well i hope the title gave you the right idea. Im trying to find a way in Delphi where my program will search for a certain bitmap or color/pixel and move the mouse to that location. Google isnt ...
3
votes
0answers
104 views
Simulate Mouse dragging in Delphi
I have a Delphi Form and on it an TWebbroser with a google map. I want to simulate a Mouse Drag. Left klick, move mouse to another position, release mouse. It should drag the Map from left to right.
I ...
2
votes
1answer
131 views
A form that does not handle mouse and keyboard event [duplicate]
I want to make a form in Delphi that does not handle mouse and keyboard events and pass them to the window below itself. How can I do this?
0
votes
0answers
55 views
A non mouse-reacting layer (form) [duplicate]
Is it possible to create a transparent form which does not react to mouse events?
And by that I mean that the mouse events are passed to the application beneath.
Or the question could maybe be:
How ...
3
votes
3answers
514 views
How can a control receive mouse events after the mouse is dragged beyond its borders?
I'm creating a custom control which recognizes when the mouse is dragging, specifically using messages WM_LBUTTONDOWN, WM_LBUTTONUP, and WM_MOUSEMOVE. When the mouse goes down, I capture the position ...
0
votes
2answers
281 views
TEmbeddedWB / TWebbrowser mouse lag (object drag and drop)
I use a TEmbeddedWB in a Delphi project to display a HTML5/CSS3/Javascript game fullscreen. It uses IE9 embedded to render the page. That is working fine but i discover some lag, speed difference ...
4
votes
2answers
233 views
Unable to click custom control in design time
I'm building a custom control (inherited from TCustomControl) in Delphi XE2 (and have had this issue in other controls of mine) and in design time, I'm unable to click them. I know it has to do with ...
0
votes
2answers
387 views
Snapping mouse cursor to a line in a Delphi custom control
I'm wondering how can I achieve horizontal (or vertical) snapping the mouse cursor to a line. For example, on the Facebook timeline feature, when you hover the mouse over the line down the center, it ...
0
votes
2answers
378 views
How to change mouse position in hook
I would like to know how I can change mouse position in MouseProc function. Specifically to keep Y-coordinate the same. This is my function:
function HookProc(nCode: Integer; MsgID: WParam; Data: ...
4
votes
2answers
741 views
-1
votes
3answers
4k views
How do I get another application's window handle passed to Delphi via a mouse click
How can I get the handle of a window to be passed to Delphi by the user selecting the window (could be any other aplication's window) by clicking with the mouse on it. In my Delphi app I could have a ...
3
votes
1answer
746 views
Shadow for custom mouse cursor (2)
After reading the answer to the Shadow for custom mouse cursor question, I did some testing.
From my Delphi application I loaded both 32bit and 24bit versions of my cursor. Never a shadow. I did the ...
2
votes
2answers
811 views
How to make a panel appear when the mouse moves over it? delphi
How can I make a panel appear with everything that is in it when I move my mouse over its location?
When I move it off again, it fades back out?
Doing it when it is visible is not a problem (except ...
3
votes
1answer
465 views
Wrap mouse around screen edges
problem description
I've got a Delphi component. To set a value, you can click and drag.
However, when you reach the edge of the screen, you can't go any further. You then need to go back to the ...
1
vote
1answer
1k views
Delphi: How make my own Hint Window?
D6 Prof.
We have a special application with a special grid. It have a HintWindow what can show other informations that cannot place in cells. For example long memos.
When you move the mouse to a ...
2
votes
1answer
917 views
SetWindowsHookEx WH_MOUSE freeze on breakpoint in Win7
helos,
on WinXP my application has been sucessfully using a global mousehook to retrieve mouseposition and clicks even if it does not have the focus. the hook is in a separate .dll and is being ...
2
votes
2answers
2k views
Multiple mouse/mice/cursor?
How can I show another cursor for multiple mice?
I have two TMemos, two keyboards which can type into their respective TMemo, 2 mice and I need 2 cursors those.
If hypothetically, I can already ...
5
votes
1answer
1k views
How to Detect Forward and Back Mouse Button Events in Delphi?
If a mouse has other buttons in addition to the standard left/right/middle (e.g. forward/back), how can we detect those button clicks in Delphi?
An example of how this is used is the Internet ...
0
votes
1answer
1k views
How to clear mouse click buffer
We may use the following code to clear keyboard buffer:
while PeekMessage(Msg, 0, WM_KEYFIRST, WM_KEYLAST, PM_REMOVE or PM_NOYIELD) do;
But how may I clear mouse click buffer?
2
votes
5answers
1k views
Is there a Delphi 'joystick' control?
I'd like to align an object in X and Y by eye using the mouse to move it into position. I can roll a solution by using various spin controls (or buttons) but it's messy and I got to wondering whether ...
2
votes
1answer
1k views
How to get hot node coords of TVirtualStringTree?
I'm trying to paint VirtualStringTree's cell differently when mouse is over it. How can I detect the coords of hot node? I know there's a HotNode property but it returns only Node that is under mouse ...
4
votes
2answers
5k views
Check if Mouse LButton is down?
How do I check if the Left button of my mouse is currently pressed down/dragging something(I preffer the first possibility).
I tried Mouse.IsDraging,but no result.
NOTE: I handle mouse messages in ...
0
votes
2answers
473 views
Delphi Form Drag Lockup
Make a Delphi 2007 application, TForm as main window.
Run application. Try to drag the form using the caption bar. The debugger shows an unending stream of error messages, complaining it can't find ...
3
votes
3answers
2k views
Call to TMouse.GetCursorPos sometimes fails with “A call to an OS function failed”
On occasion my application gets the error below.
Normally this happens when the user steps away from their desk leaving my program open. When they come back this error has appeared.
...
3
votes
4answers
3k views
How do I get the coordinates of the mouse when a control is clicked?
In a TImage's OnClick event, I would like to extract the x,y coordinates of the mouse. I would prefer them in relation to the image, but in relation to the form or window is just as good.

