Hi All
Just a ponder, how would you get the first letter in a textbox to appear in a Label caption. ex My name is Spud and the letter "S" appears in a label caption?
Printable View
Hi All
Just a ponder, how would you get the first letter in a textbox to appear in a Label caption. ex My name is Spud and the letter "S" appears in a label caption?
I'm not quite sure what you mean.
If text1.Text="My name is Spud" then the letter M is the first Character.
The code to get the first character of a textbox would be
I'm not quite sure what you want to do to get the letter S.Code:Label1.Caption = Left$(Text1.Text,1)
Sam thats exactly what I was looking for!
Thanks Spud