8
votes
1answer
69 views

Detect whether the mouse is touching the ground or if it is in the air

My sister and me are writing a program to help people, that suffer from tremor (trembling in hands). The program recognizes if the mouse cursor is getting slower and then makes the cursor easier ...
0
votes
2answers
73 views

C# Mouse cursor disappears

[Mouse cursor over window]: When I type in textboxes, on a .NET C# 4.0 window, the mouse cursor disappears and this is strange by itself. [Mouse cursor outside window]: When I type in textboxes and ...
2
votes
1answer
107 views

Caret location/position Inside any Application

I'm doing a universal text auto completer application in C#. So I need to get the caret position in the currently active window (it may be Notepad, Ms Word etc). What should I do to get the X,Y ...
2
votes
5answers
264 views

Prevent mouse from leaving my form

I've attached some MouseMove and MouseClick events to my program and next up is one of these: Get "global" mouse movement, so that I can read the mouse location even outside the form. Prevent my ...
1
vote
1answer
283 views

How to handle MouseMove events in C# faster

I'm currently trying to draw something on image that is shown in pictureBox. I'm using event handlers for mouse activity: onMouseUp, onMouseMove and onMouseDown. private void onMouseDown(object ...
0
votes
1answer
197 views

Transparent Form Woes (Form shows up black, form doesn't show up at all)

I'm trying to create a transparent form that will still respond to mouse move and click events, to show our company's logo until the user clicks the mouse, but I'm having a bit of difficulty in that ...
0
votes
1answer
78 views

How to draw attention to the current mouse location?

We have an app that hides the desktop icons when the keyboard/mouse are idle for longer than 15 seconds. When the user starts using either of these devices again, we would like to draw their attention ...
1
vote
2answers
120 views

how to recognize clicks of two different mouses?

I want to recognize clicks of two mice - is this possible? I have to do different actions depending on which button was pressed. UPDATE: For example, two left buttons from two mice.
0
votes
0answers
58 views

Multiple Remote Users working on a single desktop with many mouse pointers

I'd like to try and build something like this using C# http://www.multimouse.com I've heard of the MultiPoint Mouse SDK and it seems to be more geared toward physical mice on the PC you're looking ...
0
votes
2answers
1k views

Draw on a picturebox image using mouse vb.net

How can i draw on a picturebox image using mouse in vb.net a line or brush?
0
votes
1answer
360 views

Increase Cursor Size on Entire Desktop

First of all, please put aside notions of "Your application shouldn't do this". This is exactly what the people purchasing this software will be expecting. How can I, system-wide, increase the size ...
1
vote
1answer
229 views

Richtextbox how to disable textbox scrolling on mousewheel

I have the mousewheel event hooked to a function that increases the size of the font. While this functionality works perfectly, it also scrolls the textbox upon scrolling the mousewheel, which is not ...
0
votes
2answers
137 views

Mouse cursor location messes up on form resize

I have a function that sets the location of a certain textbox to the location of mouse cursor whenever the dragover event is called. private void DGVLogicSimView_DragOver(object sender, DragEventArgs ...
1
vote
1answer
1k views

Get Mouse State (Down/Up) C#

I have a form with many, many controls. I need to detect if the mouse is down or if it's up. Most of the time, I don't have MouseEventArgs. Is there a quick and easy way to tell if the mouse is down ...
1
vote
2answers
423 views

Mouse Movement in Windows 7 - Left Click and Drag

I am trying to automatically draw in a program similar to paint by simulating mouse movement and clicks with user32.dll in Windows 7. Here's what I have and how I use it: Setup ...
0
votes
3answers
894 views

motion detection from webcam to control mouse pointer using .NET

My .NET application captures detects motion of a specific type of object from webcam. I am able to control movement of mouse within my form by translating the motion of the object. However I want to ...
6
votes
2answers
502 views

How does a ComboBox capture mouse when it is dropped-down?

I am trying to model the behavior of a ComboBox dropdown (or other drop downs for that matter, including context menus) where the drop down closes when you click anywhere else, even on something that ...
4
votes
1answer
199 views

Use Mouse as Position Sensor

I have project in which we are using a laser mouse as a position sensor. For the proof of concept work I wanted to use the electrical components as is from a commercial 'off the shelf' mouse to save ...
0
votes
1answer
221 views

How do i suppress mouse wheel event of container control?

I have a silverlight page with scroll viewer in it. Inside scorll viewer I have a user control. (user control is like a NumericUpDown control.) I have implemented Mouse-wheel event of Text-box ...
0
votes
1answer
30 views

A generic way of logging text of clicked controls in .NET application?

Is there a generic way of doing it? I want to log all mouse-click events of my application without placing code in each event handler. I want to log text of the clicked item too. In 80% of cases, ...
0
votes
1answer
1k views

How to change default mouse cursor for the whole WPF application globally?

In my WPF application I am using only one mouse cursor. Is there any way to change this cursor for the whole WPF application globally?
1
vote
2answers
1k views

How to detect mouse clicks?

how can i detect mouse clicks on Windows ? (XP/Vista/7). for example when my application is running , it will detect if user click on something (not on that application UI but on Windows UI). if yes , ...
0
votes
4answers
221 views

Dealing with throttled Mouse Move events in .NET

I am trying to write a form which the user can draw on by holding down and moving the mouse. Therefore I am subscribing to the MouseMove event and using the Point given to draw a Pixel at that point. ...
1
vote
1answer
165 views

How can I listen for mouse wheel events in the Margin between two items in an ItemsControl?

I have an ItemsControl that looks something like this: <ItemsControl ItemsSource="{Binding}" PreviewMouseWheel="ItemsControl_PreviewMouseWheel" > <ItemsControl.ItemTemplate> ...
3
votes
1answer
308 views

Detecting Horizontal Mouse Wheel movement

I am using the mousewheel in my DotNet application, which I have done by following: MSDN MouseWheel example But on my application it would be great to also use the existing hardware horizontal mouse ...
0
votes
1answer
715 views

Problem with MouseMove event, launched when the content of control beneath is moved with arrow keys

My UserControl is a kind of a container that has a set of controls inside. One of the UI behaviours I designed is that the move over nested control makes it selected for some keyboard triggered ...
3
votes
1answer
878 views

How to drag and move winform using mouse

I know how to 'drag and move' a winform by adding following code Protected Overrides Sub WndProc(ByRef m As Message) If (((m.Msg = 163) And ClientRectangle.Contains(PointToClient(New ...
1
vote
1answer
417 views

Keep the Focus on a custom (User)Control in WPF

Say, I need to move a custom (User)Control in a form, using the keyboard. The behavior is simple: the user clicks the control, then it can move it using the keyboard (up/d/l/r). In this sample ...
1
vote
1answer
180 views

level editor's tiles don't change when I hold the mouse down?

Can someone tell me why my level editor's tiles don't change when I hold the mouse down? Full source: http://pastebin.com/U3KKSRT8 private void MapPanel_MouseDown(object sender, MouseEventArgs e) ...
1
vote
3answers
4k views

Adding a custom cursor in XNA/C#?

I am currently developing a game in XNA. I would like to add a cursor (not the standard Windows one)to the game. I have already added the sprite to my contents folder. I have a method for finding the ...
3
votes
1answer
512 views

Autoscroll problem on mousedown

I have a custom control inside an autoscroll panel. When the user control extends beyond the width of the panel, the scroll bars appear. When you then scroll any distance, and mousedown on the ...
2
votes
3answers
1k views

How can I track mouse click and drag events in VB.NET?

First, I want to know if the mouse is in some area. Then, I want to check if the mouse holds the left click. I want to check as long as the left button is down, and I want to track the mouse's ...
0
votes
3answers
177 views

RightDoubleClick and context menu

Related Question (Details) Tunneling events and ContextMenu I have a WPF canvas to which I associated a ContextMenu.. This is cool. Now I have to implement some action on Right DoubleClick... In ...
2
votes
3answers
1k views

Sending a Mouse Click to a Specific Position without Moving the Mouse

I'm looking to send a mouse click to a specific position on a screen without affecting the mouse cursor's location. I've scoured and have tried everything under the sun with mouse_event (which is ...
5
votes
3answers
598 views

How to simulate mouse clicks and keypresses in F#

I'm doing a program that's supposed to move the mouse around and press automatically at places where I specify in the code. Right now i've managed to move the cursor by using this line: ...
2
votes
3answers
739 views

How can I get a TabPage from a TabControl based on a Point?

Surely this has got to be easy; I'm just not having any luck with it. How would I get the TabPage of a given TabControl whose tab contains a given Point? For example, if I'm handling the MouseUp ...
-2
votes
1answer
913 views

How to get current mouse cursor coordinate in C#?

How to get current mouse cursor coordinate in C#?
1
vote
2answers
150 views

Where do I start if I want to program something that can change the configuration of Keyboard/Mouse in Windows?

Configuration as in the options you see in the Keyboard/Mouse settings under Windows. I have some .NET programming experience.
3
votes
4answers
794 views

Problem automating mouse and interacting with Flash apps

I written a C# tool that simulates a user interacting with a Windows 7 environment. It works except when interacting with a couple online flash applications. Mouse movements and clicks are being ...
8
votes
1answer
2k views

Low level mouse hook and DirectX

I'm building an application which needs to filter some mouse clicks system-wide. That is, I need to make the system ignore some mouse button clicks at special occasions. I use low level mouse hook ...
1
vote
1answer
92 views

Why use bitwise operators for checking mouse clicks?

I usually write the following to handle a right mouse click. if (e.Button == MouseButtons.Right) { } But, I have seen people do it this way. Can somebody tell me why they do it this way? ...
2
votes
1answer
131 views

Show underlying applications mouse cursor when hovering over visible section of my application

I am writing a WPF application that allows the user to draw over the entire screen when the right mouse button is held down. I use a full screen transparent overlay form to achieve this, however, as I ...
1
vote
1answer
492 views

Determine Mouse Button Switch State

I'm trying to determine the host operating system's settings regarding mouse button switch state to properly handle a context menu event. I want to determine whether or not the operating system my ...
0
votes
2answers
338 views

Change global mouse cursor in .NET

I need ability to modify the cursor while my application is running, and restore it afterwards. Cursor.Current doesn't seem to work. Any other alternatives? Is there any API for this? Thanks
2
votes
1answer
87 views

Translating Mouse gestures into Numbers (.NET)

I am looking for a way to translate mouse movements - while the left mouse button is kept pressed down - into numbers 0 - 9. Are there any existing .NET libraries for this? many Thanks for any ...
1
vote
1answer
290 views

can I “cancel” mouse move and make the mouse cursor remain visible but in place?

I am implementing shape resizing using corner handles. In some cases, certain moves with the mouse holding the handle are not legit, e.g. if it will in effect extend it beyond the control boundary. So ...
1
vote
3answers
1k views

Mouse Gesture Libraries for .Net?

Are there any half decent mouse gesture libraries for .Net? Have found very few and no decent ones.
1
vote
1answer
470 views

RichTextBox SelectionChanged called before MouseDown?

I'm working with a RichTextBox, and would like to do one thing in the SelectionChanged event if the mouse is down, and another if it's not (e.g. if the keyboard is used to select something). However, ...
1
vote
5answers
815 views

How do I detect if both left and right buttons are pushed?

I would like have three mouse actions over a control: left, right and BOTH. I've got the left and right and am currently using the middle button for the third, but am curious how I could use the ...
1
vote
2answers
512 views

How to repeat a mouse click in .NET

My app runs as a plugin inside another windowed app. Thus, my window often doesn't have the focus. Now, if someone moves the mouse over a button/menu and clicks once, all it does is set focus to my ...

1 2