If you have a focus on a textbox but mousecursor not exactly hovering on it, mousecursor has default arrow shape or whatever you define.

At the time when you start typing, mousecursor hide itself and you see only blinking stick IBeam type cursor in the textbox.

Question: How to hold mousecursor on its initial position even if you start typing?

Interestingly enough: this doesn't happen in WPF apps.

link|improve this question

3  
I do have to ask, why? Usually people who try to break core UI patterns like this end up making terribly unusable and annoying applications. Perhaps there's a better way to achieve your ultimate goal (not expressed here)? – siride Aug 17 '10 at 20:56
Hmm.. I needed to get data from a magnetic card reader. So it actually at the time of swipe returns very long string with some distinguishable pattern, and it works comparatively slow, as slow as a user who types text using keyboard pretty fast. It takes more than 4 sec. to read all the data from the reader. I decided that immediately when input gets first characters, and if that looks like reader's string I move focus to another textbox, which technically visible but moved outside the boundaries of the form. Until it gets the rest of the input I have to show busy cursor. – Agzam Aug 23 '10 at 13:36
feedback

4 Answers

up vote 2 down vote accepted

Guys... That was ridiculously easy. In TextBox.KeyDown I have to move the Cursor every time to point where it was before..

 Cursor.Position = new Point( oldX, oldY ); 

The only ugly thing here - if it's an animated cursor, animation starts everytime all over again. And also you can't type and move the mouse at the same time. That 's kind'a suck, on the other hand who cares? Winform apps tend to be uglier than WPF ones, isn't that true?

link|improve this answer
Thus ultimately calling SetCursor(). And there you have it. – JustBoo Aug 17 '10 at 21:37
feedback

I'm going to answer the question. The side-effects and repercussions are your responsibility. Is there another way of doing it? I'm certain.

Create a "state" variable to hold the state of whether a user is typing or not. Textboxes have various events to let you know when someone is typing, EN_CHANGE, etc., that whole family of events and so on. Set state variable true when user is typing. False when not typing, EN_LOSTFOCUS, etc.

Trap mouse input through a PreProcessMessage event or PreTranslateMessage event, or any that seem appropriate.

Call "ShowCursor" or potentially "SetCursor" in the OnPaint event whilst the state variable is true. Yep, hairy, eh. Do not call it while the state variable is false.

Debug, debug, debug after this. HTH

If this is not clear post and I'll expand my answer.

link|improve this answer
See Ike's answer for a more "WinForm" style answer. – JustBoo Aug 17 '10 at 21:48
feedback

This is a Windows setting.

Under Control Panel, go to Mouse and then you should see a setting similar to "Hide Pointer While Typing"

link|improve this answer
Even with that option turned off, if the pointer is positioned over the textbox, it will disappear when the user starts typing. – Anna Lear Aug 17 '10 at 20:11
I just checked and it does not disappear for me. It just changes to a blinking "I" instead of a pointer. – Raj More Aug 17 '10 at 20:13
Which is exactly the OP's problem, if I'm reading the post right. – Anna Lear Aug 17 '10 at 20:15
Yes.. it hides the mouse point even with this setting on. Besides I need a programmatic solution. – Agzam Aug 17 '10 at 20:17
@Anna is right. The problem is, that I want to hold mouse pointer visible. – Agzam Aug 17 '10 at 20:19
show 1 more comment
feedback

Far as I know, there's no way to do that. Even after turning off the Windows "Hide Pointer While Typing" setting, the cursor will disappear if it is positioned over not just the textbox, but the entire form.

There doesn't seem to be anything in the properties of either the textbox control or the form that affects this behaviour.

link|improve this answer
Hmm... maybe the hard way to do that? Get the mouse pointer position and in the TextBox.KeyDown event put it everytime there it was before? something like that? – Agzam Aug 17 '10 at 20:22
Putting "Cursor.Show();" into the KeyDown event makes the cursor sometimes reappear when you're done typing. – Anna Lear Aug 17 '10 at 20:35
No... I need to show the cursor at the time of typing... I tried how you told - didn't work... – Agzam Aug 17 '10 at 20:45
Oh.. there is a workaround I can Draw() a cursor at the position. But the point is I need to use animated busy cursor. But Draw() will draw only still one... – Agzam Aug 17 '10 at 21:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.