Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In WinForms, to set focus to a specific control, I always seem to wind up calling Control.Select() and Control.Focus() to get it to work.

What is the difference, and is this the correct approach?

share|improve this question

4 Answers

up vote 13 down vote accepted

Focus is a low-level method intended primarily for custom control authors. Instead, application programmers should use the Select method or the ActiveControl property for child controls, or the Activate method for forms.

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.focus.aspx

share|improve this answer
10  
I don't think this is a good enough answer. I read that and understand that. I wrote a custom control. I don't know when it's appropriate for me to use Select vs Focus in my custom control, however. Is it an always thing? Is there some set of criteria? what are the implications of one versus the other, both actual and semantic? – Greg D Jul 23 '09 at 5:52
I suspect most people will have read MSDN before typing this question into Google. Simply repeating it here verbatum is not very helpful. – Martin Brown Nov 20 '12 at 11:13

Focus() is the low level function that actually sets the focus.

Select() is a higer-level method. It first looks iteratively upward in the control's parent hierarchy until it finds a container control. Then it sets that container's ActiveControl property (to the called control). The logic in those methods is not straightforward however, and there is special handling for UserControl containers.

share|improve this answer

From personal experience I wrote a user control inheriting the Windows ComboBox. I had to write code to override the OnEnter event and I had a statement in there saying

If Me.Focused Then ... Else ...

However, unfortunately it returned the unexpected result. If I called MyCustomerComboControl.Select (in either Load, Shown or Activated events) it called the OnEnter method but failed to register it had the focus (i.e. Focused was False) but if I called Focus it worked. Furthermore Select worked if the form was open i.e. if I selected another control then re-selected the original control all was fine. So in any other circumstances other than my scenario, use Select because it says so above.

share|improve this answer

Why use Select if you can use Focus? The reason we use any of them is to 'Select the Control that we want move the Focus to' isn't it?

So if, according the answers above, Select is gunna possibly gin us around, then why use it at all?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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