Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Numeric Input
Message
General information
Forum:
ASP.NET
Category:
Other
Title:
Miscellaneous
Thread ID:
01156834
Message ID:
01158324
Views:
22
lol yeah things are easy when you know how.

Regarding the upper letters I would again use the keypress event. Something like this:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
  if (char.IsLetter(e.KeyChar) && !char.IsUpper(e.KeyChar))
  {
    e.KeyChar = char.ToUpper(e.KeyChar);
  }
}
I don't understand what you mean by show version numbers. Do you want to should the version number of the running assembly?

>Its so easy when u know how
>
>As you know in FOX its all in the programmes
>
>How about ensuring that all characters are made upper ON INPUT - Ive got the input being converyed to UPPER at end of entry want it during entry
>
>Also how do you show VERSION Numbers
>
>How do you save version numbers
>
>Thanks again
Semper ubi sub ubi.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform