Forms

  • Thread starter Thread starter SQL
  • Start date Start date
S

SQL

Hi,

While a user is entering text in a textbox, how can I convert that to upper
case as they are keying?

Thanks.
 
Nice...thanks!

AlexS said:
Hi, SQL

if you are using Forms text box, take a look at CharacterCasing property.

In WebForms you might use TextChanged event, but it will require postbacks,
so maybe some script will be better. But I am no script expert.

HTH
Alex
 
* "SQL said:
While a user is entering text in a textbox, how can I convert that to upper
case as they are keying?

Set its 'CharacterCasing' property to 'CharacterCasing.Upper'.
 
Hi, SQL

if you are using Forms text box, take a look at CharacterCasing property.

In WebForms you might use TextChanged event, but it will require postbacks,
so maybe some script will be better. But I am no script expert.

HTH
Alex
 
Hi I,m Srira
In TesxtBox you have a property called 'CharacterCasing' >select one that you want from the combobox in property window.(This property is available only with vb.net
In vb, you have to call the followin
function key_pressed(keyascii as integer

and write your won code there
 
Back
Top