Case conversion

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John

    #1

    Case conversion

    Hi

    How can one change a textbox's content to mixed case (first letter of each
    word cap, rest small) in vb.net?

    Thanks

    Regards


  • Cor Ligthert

    #2
    Re: Case conversion

    John,

    This is one of the great methods that are in the visualbasic namespace
    ..
    http://msdn.microsoft.com/library/de...fctstrconv.asp

    I hope this helps,

    Cor


    Comment

    • Herfried K. Wagner [MVP]

      #3
      Re: Case conversion

      "John" <John@nospam.in fovis.co.uk> schrieb:[color=blue]
      > How can one change a textbox's content to mixed case (first letter of each
      > word cap, rest small) in vb.net?[/color]

      \\\
      s = StrConv("hello world", VbStrConv.Prope rCase)
      ///

      --
      M S Herfried K. Wagner
      M V P <URL:http://dotnet.mvps.org/>
      V B <URL:http://classicvb.org/petition/>

      Comment

      Working...