Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Numeric Input
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
Divers
Thread ID:
01156834
Message ID:
01158324
Vues:
23
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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform