vote up 0 vote down star

Hi.

I must replace keystroke when user typing in TextBox. When user type 123,456,789 text box must contain 123.456.789.

Please HELP.

flag

1 Answer

vote up 1 vote down

One "low" level solution:

You can play with GetKeyState() from WINAPI That should allow You to change the input.

Keyboard actions

Or try this:

WM_..for ','

Key codes

some code:

case WM_KEYDOWN: 
        switch (wParam) 
        { 
            case VK_OEM_COMMA: 

                //Your processing code
link|flag

Your Answer

Get an OpenID
or

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