how to set proper case of a word?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

Does VB.Net have a form of strConvert function? I tried

Imports Microsoft.VisualBasic

but strConvert not available. What is the way to set the propercase of a
word in VB.Net?

Thanks,
Rich
 
Rich said:
Does VB.Net have a form of strConvert function? I tried

Imports Microsoft.VisualBasic

but strConvert not available. What is the way to set the propercase of a
word in VB.Net?

\\\
Dim s As String = StrConv("hello world", VbStrConv.ProperCase)
///
 
Back
Top