|
Setting Focus to a textbox in a TabControl
|
Email
|
| Submitted on: |
6/25/2012 12:18:14 PM |
| By: |
Duca Adrian
|
| Level: |
Beginner |
| User Rating: |
Unrated |
| Compatibility: |
VB.NET |
| Views: |
2266 |
|
(About the author) |
|
|
|
Setting Focus to a textbox inside a TabControl
|
| |
Terms of Agreement:
By using this article, you agree to the following terms...
- You may use
this article in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
- You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
- You may link to this article from another website, but ONLY if it is not wrapped in a frame.
- You will abide by any additional copyright restrictions which the author may have placed in the article or article's description.
|
Private Sub TabControl1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabControl1.SelectedIndexChanged
If TabControl1.SelectedIndex = 0 Then
txtCeCaut.Focus()
ElseIf TabControl1.SelectedIndex = 1 Then
txtDenSoc.Focus()
End If
End Sub
|
|
Report Bad Submission
|
Your Vote
|
| |
Other User Comments
|
There are no comments on this submission. |
Add Your Feedback
Your feedback will be posted below and an email sent to
the author. Please remember that the author was kind enough to
share this with you, so any criticisms must be stated politely, or they
will be deleted. (For feedback not related to this particular article, please
click here instead.)
To post feedback, first please login.
|