Please support our C# advertiser: Programming Forums
•
•
Join Date: Jul 2005
Posts: 38
Reputation:
Rep Power: 4
Solved Threads: 1
hi,
can anyone tell me what's wrong with my code or show me a working code to add in to my program so that i can study and understand how the code actually works..
after i type in textbox, i want to be able to hit "enter" key instead of clicking on the button.. i do not mean that i want to disable clicking on the button.. i just want to let user be able to hit "enter" too.. my textBox is named textBox4, button is button3 and after the button is hit, it should open a tab page called tabPage6 under tabControl1...
private void button3_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar==(char)13)
{
this.GetNextControl(textBox4,true).Focus();
tabControl1.Focus();
tabControl1.SelectedTab=tabPage6;
e.Handled=true;
}
}
thanks!
can anyone tell me what's wrong with my code or show me a working code to add in to my program so that i can study and understand how the code actually works..
after i type in textbox, i want to be able to hit "enter" key instead of clicking on the button.. i do not mean that i want to disable clicking on the button.. i just want to let user be able to hit "enter" too.. my textBox is named textBox4, button is button3 and after the button is hit, it should open a tab page called tabPage6 under tabControl1...
private void button3_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar==(char)13)
{
this.GetNextControl(textBox4,true).Focus();
tabControl1.Focus();
tabControl1.SelectedTab=tabPage6;
e.Handled=true;
}
}
thanks!
Similar Threads
Other Threads in the C# Forum
- Replacing "Enter" in textBox (ASP.NET)
- reading a char from keyboard without pressing "Enter"??? (C)
- Capturing "Enter" key event in C# windows application (C#)
- google "keyword" question (Search Engine Optimization)
- why i have to press "enter" twice before getline can read the string... (C++)
Other Threads in the C# Forum
- Previous Thread: Form values
- Next Thread: painting on top of custom components
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)






Threaded Mode