I have a long text (memo field) and I want to convert the initial characters to uppercase. How to do this? I am using VB.NET 2003.
Printable View
I have a long text (memo field) and I want to convert the initial characters to uppercase. How to do this? I am using VB.NET 2003.
Probably different in .Net, but regular VB has an option of vbProperCase in the StrConv function that will convert the first letter of every word in a string to upper case.