VB.NET: Erster Buchstabe als Grossbuchstabe

Tags: .NET

Dim strValue As String = "let's test this."  

MsgBox(StrConv(strValue, VbStrConv.ProperCase))
Add a Comment