Click here to Skip to main content
15,889,595 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to write a music player? Pin
exhaulted3-Nov-04 23:38
exhaulted3-Nov-04 23:38 
QuestionWindows XP SP2 : The Death of my Chatting Application? Pin
Zishan Haider3-Nov-04 20:04
Zishan Haider3-Nov-04 20:04 
AnswerRe: Windows XP SP2 : The Death of my Chatting Application? Pin
sreejith ss nair3-Nov-04 20:22
sreejith ss nair3-Nov-04 20:22 
GeneralRe: Windows XP SP2 : The Death of my Chatting Application? Pin
Zishan Haider4-Nov-04 17:57
Zishan Haider4-Nov-04 17:57 
Generalset enter key instead of tab key Pin
amalatsliit3-Nov-04 18:57
amalatsliit3-Nov-04 18:57 
GeneralRe: set enter key instead of tab key Pin
DanieVanEck3-Nov-04 19:36
DanieVanEck3-Nov-04 19:36 
GeneralRe: set enter key instead of tab key Pin
DanieVanEck3-Nov-04 19:41
DanieVanEck3-Nov-04 19:41 
GeneralRe: set enter key instead of tab key Pin
sreejith ss nair3-Nov-04 19:50
sreejith ss nair3-Nov-04 19:50 
To set and view the Tab order, On the View menu, choose Tab Order which is avilable in .NET IDE.

to select control using enter key, use below mentioned code block.

private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)<br />
{<br />
			<br />
if(e.KeyValue==13)<br />
{<br />
				this.SelectNextControl(this.ActiveControl,true,true,false,true);<br />
}<br />
			<br />
}

The above code block is only tip to achive your requirement.
Please see more details on SelectNextControl Method for different style of selection and parameter types in MSDN.
Big Grin | :-D

Sreejith Nair
[ My Articles ]
GeneralRe: set enter key instead of tab key Pin
Jay Shankar4-Nov-04 15:03
Jay Shankar4-Nov-04 15:03 
GeneralRe: set enter key instead of tab key Pin
amalatsliit10-Mar-05 18:08
amalatsliit10-Mar-05 18:08 
Generalhelp with a new control Pin
tom_dx3-Nov-04 16:03
tom_dx3-Nov-04 16:03 
GeneralRe: help with a new control Pin
sreejith ss nair3-Nov-04 16:55
sreejith ss nair3-Nov-04 16:55 
GeneralRe: help with a new control Pin
Dave Kreskowiak3-Nov-04 17:18
mveDave Kreskowiak3-Nov-04 17:18 
GeneralRe: help with a new control Pin
Roger Alsing4-Nov-04 2:26
Roger Alsing4-Nov-04 2:26 
GeneralRe: help with a new control Pin
Dave Kreskowiak4-Nov-04 6:23
mveDave Kreskowiak4-Nov-04 6:23 
GeneralBest Practice For .NET Service Pin
SigEpUCI3-Nov-04 15:07
SigEpUCI3-Nov-04 15:07 
GeneralRe: Best Practice For .NET Service Pin
sreejith ss nair3-Nov-04 16:59
sreejith ss nair3-Nov-04 16:59 
GeneralRe: Best Practice For .NET Service Pin
Dave Kreskowiak3-Nov-04 17:17
mveDave Kreskowiak3-Nov-04 17:17 
GeneralRe: Best Practice For .NET Service Pin
Sebastian Schneider4-Nov-04 22:40
Sebastian Schneider4-Nov-04 22:40 
Generalparsing Pin
webhay3-Nov-04 14:17
webhay3-Nov-04 14:17 
GeneralRe: parsing Pin
Dave Kreskowiak3-Nov-04 17:14
mveDave Kreskowiak3-Nov-04 17:14 
GeneralRe: parsing Pin
Charlie Williams3-Nov-04 17:15
Charlie Williams3-Nov-04 17:15 
GeneralRe: parsing Pin
webhay4-Nov-04 1:03
webhay4-Nov-04 1:03 
GeneralRe: parsing Pin
webhay4-Nov-04 1:03
webhay4-Nov-04 1:03 
GeneralRe: parsing Pin
J4amieC4-Nov-04 2:54
J4amieC4-Nov-04 2:54 

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.