Mouse pointer disapears when putting text

  • Thread starter Thread starter Vicky
  • Start date Start date
V

Vicky

Hello,

I develope an application in C# .NET
(Visual Studio .NET).
I have realized that when I type any
text in TextBox, mouse pointer disapears.
I must move mouse, to make pointer
visible again.
What to do, to avoid hiding mouse
pointer during typing text in TextBox?

Thanks in advance,
Vicky.
 
Is there a particular reason why you want your program to behave
differently from every other program in Windows? This is standard
behaviour for a Windows application.
 
Bruce said:
Is there a particular reason why you want your program to behave
differently from every other program in Windows? This is standard
behaviour for a Windows application.

Wrong, it is a *user setting*.

Check Control Panel/Mouse/Pointer Options/Hide pointer while typing.

To the OP:

This is a per-user setting. If you want to disable it for yourself, refer to
the above link, if you want to disable it for everyone, don't. If you insist,
look into how that option is stored in the registry and/or system setting.
 
Back
Top