J
John A Grandy
the conversion methods on the VB.NET String objects are of course very
useful ... but it would seem that one of the most common needs is not
properly addressed ...
if I do
Dim s As String
s = "I acTually Want the case To BE like THis"
TextBox1.Value = s.ToUpper()
maybe I get what I want in that particular text-box .... but my String
object has lost its original case ...
Of course, I can do
Dim s As String
Dim s1 As String
s = "I acTually Want the case To BE like THis"
s1 = s
TextBox1.Value = s1.ToUpper()
but that's a couple extra lines of code.
StrConv() is no better because it also operates on its String parameter
There's got to be a better way ...
useful ... but it would seem that one of the most common needs is not
properly addressed ...
if I do
Dim s As String
s = "I acTually Want the case To BE like THis"
TextBox1.Value = s.ToUpper()
maybe I get what I want in that particular text-box .... but my String
object has lost its original case ...
Of course, I can do
Dim s As String
Dim s1 As String
s = "I acTually Want the case To BE like THis"
s1 = s
TextBox1.Value = s1.ToUpper()
but that's a couple extra lines of code.
StrConv() is no better because it also operates on its String parameter
There's got to be a better way ...