View Single Post
  #3 (permalink)  
Old 08-16-2006, 08:52 PM
Void's Avatar   
Void Void is offline
Programming Expert
 
Join Date: Jun 2006
Posts: 411
Credits: 0
Rep Power: 12
Void is on a distinguished road
Default

Not too hard and basically just what hooser said.

Code:
  string upper = textBox1.Text.Substring(0,1).ToUpper();
  string lower = textBox1.Text.Substring(1).ToLower();

  string complete = String.Concat(upper, lower);
Replace textbox.text with your own string.
__________________
Void
Reply With Quote