tags:

views:

51

answers:

3

I am trying to get a control i can click on, press any keys (except tab) and have it take in the input. I tried using this and had a problem with the arrow keys changing the focus. That question is here.

The textbox seems to work but i dont like how it blinks. As in the line that shows where you next letter will be placed. How do i fix this?

A: 

Can you change the color of the blinking cursor to white?

tedmiston
A: 

Blinking is a system wide option. Check this out.

Otávio Décio
Don't use global state to manage a local problem -- http://blogs.msdn.com/b/oldnewthing/archive/2008/12/11/9193695.aspx
Roger Lipscombe
A: 

If you create a UserControl based on the standard textbox you can use [Control::IsInputKey][1] to override default behaviour which causes the control to lose focus.

TortoiseTNT
i'm confused, how does this help? i only lose focus on the picturebox i make a user control of. The textbox has the blink problem only.
acidzombie24