How can the first letter in a text be set to capital?
Example:
it is a text. = It is a text.
Take the first letter out of the word and then extract it to the other string.
strFirstLetter = strWord.Substring(0, 1).ToUpper(); strFullWord = strFirstLetter + strWord.Substring(1);