Re: [DOTNET] KeyPress

2002-04-23 Thread Dan Souk
ubject: Re: [DOTNET] KeyPress Dan, Keep in mind that in VB.NET, all controls are dynamically created. Therefore there is nothing unusual or inefficient about looping through the Form's Controls collection at run-time. For each textbox, you may either apply Shawn's solution (best) or dyn

Re: [DOTNET] KeyPress

2002-04-23 Thread Bill Schmidt
Dan, Keep in mind that in VB.NET, all controls are dynamically created. Therefore there is nothing unusual or inefficient about looping through the Form's Controls collection at run-time. For each textbox, you may either apply Shawn's solution (best) or dynamically attach your KeyPress event han

Re: [DOTNET] KeyPress

2002-04-23 Thread Dan Souk
asing developer productivity if that is required:) Must be a way around it. Thanks. -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]] On Behalf Of Shawn Wildermuth Sent: Tuesday, April 23, 2002 11:55 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] KeyPress Why not jus

Re: [DOTNET] KeyPress

2002-04-23 Thread Shawn Wildermuth
Why not just set the CharacterCasing property of your TextBox's? You can set it in the Property window or with code: textBox1.CharacterCasing = CharacterCasing.Upper Thanks, Shawn Wildermuth [EMAIL PROTECTED] > -Original Message- > From: dotnet discussion [mailto:[EMAIL PROTECTED]] >