the blinking cursor
-
Ummmm...no, that hides the mouse pointer, not the blinking insertion point, what he called the "cursor". RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
IIRC, no there isn't. The insertion point can't be hidden on a control that can receive keystrokes. I could be wrong though... RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
[DllImport("user32.dll")] static extern bool HideCaret(IntPtr hWnd);
Hides the caret temporarily. Remember to include:using System.Runtime.InteropServices;
Example:HideCaret(richTextBox1.Handle);
Hope this helps -
[DllImport("user32.dll")] static extern bool HideCaret(IntPtr hWnd);
Hides the caret temporarily. Remember to include:using System.Runtime.InteropServices;
Example:HideCaret(richTextBox1.Handle);
Hope this helpsAhhh! I thought there might be something I was forgetting! RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
[DllImport("user32.dll")] static extern bool HideCaret(IntPtr hWnd);
Hides the caret temporarily. Remember to include:using System.Runtime.InteropServices;
Example:HideCaret(richTextBox1.Handle);
Hope this helps