Is their a program in which it will determine if a letter in a textbox is uppercase?
This program is for Password checker as it will only be granted if the first letter is uppercase.

Annotation_2020-08-05_120208.png

     char[]
     v = Password.Text.ToCharArray();
//i want to check the first letter if its uppercase
     char s = v[0];
//event
     if (s ___ )
     {
         pictureboxD.Visible = false;
     }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.