Automatic cursor position

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

If I click to some button I want that cursor automatic point to TextBox1.
How to do that? Is it possible in C#?

Thanks
 
Tony skrev:
If I click to some button I want that cursor automatic point to TextBox1.
How to do that? Is it possible in C#?
Don't...
Personally I hate programs that take control over my cursor position or
windows order.

In your case setting focus to TextBox1 would probably solve your
problem, if it is redirecting keyboard input to your text box which is
your main target. (TextBox1.Focus = true)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top