Click here to Skip to main content
15,890,741 members
Home / Discussions / C#
   

C#

 
GeneralRe: combobox datasource switch Pin
Erdinc2725-Jan-10 4:00
Erdinc2725-Jan-10 4:00 
QuestionXmlAttributeAttribute filter by value ? Pin
GoodIntentions24-Jan-10 4:23
GoodIntentions24-Jan-10 4:23 
QuestionTransferring focus from a textbox to a button Pin
gamer112724-Jan-10 2:49
gamer112724-Jan-10 2:49 
AnswerRe: Transferring focus from a textbox to a button Pin
Som Shekhar24-Jan-10 3:06
Som Shekhar24-Jan-10 3:06 
GeneralRe: Transferring focus from a textbox to a button Pin
Rod Kemp24-Jan-10 3:16
Rod Kemp24-Jan-10 3:16 
GeneralRe: Transferring focus from a textbox to a button Pin
Som Shekhar24-Jan-10 3:18
Som Shekhar24-Jan-10 3:18 
GeneralRe: Transferring focus from a textbox to a button [Modified] Pin
Rod Kemp24-Jan-10 3:34
Rod Kemp24-Jan-10 3:34 
AnswerRe: Transferring focus from a textbox to a button Pin
Jimmanuel24-Jan-10 3:16
Jimmanuel24-Jan-10 3:16 
gamer1127 wrote:
private void txtBoxLogIn_TextChanged(object sender, EventArgs e)
{
txtBoxLogIn.KeyPress += new KeyPressEventHandler(txtBoxLogIn_KeyPress);
}

Why re-subscribe to the event every time the text changes? Shouldn't you only need to subscribe to that once?

gamer1127 wrote:
I'll be using only one eventhandler in transferring focus to other controls.

Why? Have you tried separate handlers for each control? That might be the source of the problem.

[EDIT]
Actually, that is the source of the problem. The first if statement in the KeyPress handler doesn't check what control the Enter Key was pressed in. It just sets the focus to the password box regradless of where Enter was pressed.

Badger | [badger,badger,badger,badger...]

GeneralRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 3:53
gamer112724-Jan-10 3:53 
GeneralRe: Transferring focus from a textbox to a button Pin
Jimmanuel24-Jan-10 4:23
Jimmanuel24-Jan-10 4:23 
GeneralRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 4:34
gamer112724-Jan-10 4:34 
GeneralRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 4:14
gamer112724-Jan-10 4:14 
AnswerRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 4:18
gamer112724-Jan-10 4:18 
GeneralRe: Transferring focus from a textbox to a button Pin
Jimmanuel24-Jan-10 4:38
Jimmanuel24-Jan-10 4:38 
GeneralRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 5:18
gamer112724-Jan-10 5:18 
GeneralRe: Transferring focus from a textbox to a button Pin
Jimmanuel24-Jan-10 5:32
Jimmanuel24-Jan-10 5:32 
GeneralRe: Transferring focus from a textbox to a button Pin
gamer112724-Jan-10 5:53
gamer112724-Jan-10 5:53 
GeneralRe: Transferring focus from a textbox to a button Pin
Jimmanuel24-Jan-10 5:58
Jimmanuel24-Jan-10 5:58 
GeneralRe: Transferring focus from a textbox to a button Pin
ragnaroknrol25-Jan-10 2:36
ragnaroknrol25-Jan-10 2:36 
QuestionMy Options Window Pin
Jassim Rahma24-Jan-10 1:50
Jassim Rahma24-Jan-10 1:50 
AnswerRe: My Options Window Pin
Som Shekhar24-Jan-10 2:22
Som Shekhar24-Jan-10 2:22 
QuestionPassing and displaying variables in forms Pin
Wogboiii23-Jan-10 23:36
Wogboiii23-Jan-10 23:36 
AnswerRe: Passing and displaying variables in forms Pin
Som Shekhar23-Jan-10 23:51
Som Shekhar23-Jan-10 23:51 
GeneralRe: Passing and displaying variables in forms Pin
Wogboiii24-Jan-10 0:01
Wogboiii24-Jan-10 0:01 
GeneralRe: Passing and displaying variables in forms Pin
Som Shekhar24-Jan-10 0:05
Som Shekhar24-Jan-10 0:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.