Click here to Skip to main content
15,898,373 members
Home / Discussions / C#
   

C#

 
GeneralRe: What the timer is for... Pin
eggie527-Jul-03 21:06
eggie527-Jul-03 21:06 
GeneralRe: What the timer is for... Pin
J. Dunlap27-Jul-03 21:08
J. Dunlap27-Jul-03 21:08 
Generalshowing a windows form when selected menu option Pin
rasaleela27-Jul-03 18:39
rasaleela27-Jul-03 18:39 
GeneralRe: showing a windows form when selected menu option Pin
Nick Parker27-Jul-03 18:42
protectorNick Parker27-Jul-03 18:42 
GeneralCapture windows Key. Pin
Nick Seng27-Jul-03 17:21
Nick Seng27-Jul-03 17:21 
GeneralRe: Capture windows Key. Pin
J. Dunlap27-Jul-03 17:26
J. Dunlap27-Jul-03 17:26 
GeneralRe: Capture windows Key. Pin
Nick Seng27-Jul-03 18:00
Nick Seng27-Jul-03 18:00 
QuestionHow to know when a window is maximized Pin
heelios27-Jul-03 16:33
heelios27-Jul-03 16:33 
AnswerRe: How to know when a window is maximized Pin
Nick Parker27-Jul-03 18:18
protectorNick Parker27-Jul-03 18:18 
AnswerRe: How to know when a window is maximized Pin
Alex Korchemniy27-Jul-03 18:25
Alex Korchemniy27-Jul-03 18:25 
GeneralRe: How to know when a window is maximized Pin
heelios28-Jul-03 4:05
heelios28-Jul-03 4:05 
Questionhow to call an array inside a sortedlist? Pin
kharr102727-Jul-03 13:07
kharr102727-Jul-03 13:07 
GeneralSecurity a la Palladium ¿? ;) Pin
antoine@orchus-tech27-Jul-03 12:34
antoine@orchus-tech27-Jul-03 12:34 
GeneralRe: Security a la Palladium ¿? ;) Pin
Alex Korchemniy27-Jul-03 18:13
Alex Korchemniy27-Jul-03 18:13 
GeneralRe: Security a la Palladium ¿? ;) Pin
StealthyMark27-Jul-03 23:27
StealthyMark27-Jul-03 23:27 
GeneralListboxes Pin
StorBruze27-Jul-03 10:31
StorBruze27-Jul-03 10:31 
GeneralRe: Listboxes Pin
Alex Korchemniy27-Jul-03 18:20
Alex Korchemniy27-Jul-03 18:20 
QuestionHow to restart windows from c# code? Pin
Member 9627-Jul-03 9:17
Member 9627-Jul-03 9:17 
AnswerRe: How to restart windows from c# code? Pin
Mazdak27-Jul-03 9:48
Mazdak27-Jul-03 9:48 
AnswerRe: How to restart windows from c# code? Pin
Erick Sgarbi27-Jul-03 15:10
Erick Sgarbi27-Jul-03 15:10 
QuestionAdvanced Log Capabilities ? Pin
Andres Manggini27-Jul-03 8:51
Andres Manggini27-Jul-03 8:51 
GeneralTabbing to next edit box using Enter key Pin
IrishSonic27-Jul-03 8:23
IrishSonic27-Jul-03 8:23 
GeneralRe: Tabbing to next edit box using Enter key Pin
kharr102727-Jul-03 13:13
kharr102727-Jul-03 13:13 
GeneralRe: Tabbing to next edit box using Enter key Pin
dynamic27-Jul-03 13:36
dynamic27-Jul-03 13:36 
C#:
<font color="blue">private</font> <font color="blue">void</font> textBox1_KeyUp(<font color="blue">object</font> sender, System.Windows.Forms.KeyEventArgs e) <br> { <br> 	<font color="#0000FF">if</font> (e.KeyData.Equals(Keys.Enter)) <br> 	{ <br> 		textBox2.Focus(); <br> 	} <br> } 



Smile | :)


Vb:
<font color="blue">Public Function</font> TwinsOnWay(<font color="blue">ByVal</font> twins <font color="blue">As String</font>) <font color="blue">As String <br>     Select Case</font> twins<br>         <font color="blue">Case</font> "Gender" <br>             <font color="blue">Return</font> "Two Girls" <br>     <font color="blue">End Select <br> End Function</font> <br> 


GeneralRe: Tabbing to next edit box using Enter key Pin
eggie527-Jul-03 19:07
eggie527-Jul-03 19:07 

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.