Is there a way to change the case of a string similar to the "StrConv Constant" vbProperCase but to convert the case
anyway I need. for example:
specialcasestring = "myCaSe"
if not stringcheck = specialcasestring then
make string same case
Note it may seem that I should just use
If Lcase(stringcheck) = Lcase(specialcasestring) then
stringcheck = specialcasestring
but I am trying to match the case without literally setting one string equal to the other.
I need to do it this way because the original string
"stringcheck" has special formatting in a richtextbox and when i use rtb.seltext = specialcasestring, however
rtb.seltext = StrConv(rtb.seltext, vbProperCase) allows formatting to remain but is not the desired case setting.
anyway I need. for example:
specialcasestring = "myCaSe"
if not stringcheck = specialcasestring then
make string same case
Note it may seem that I should just use
If Lcase(stringcheck) = Lcase(specialcasestring) then
stringcheck = specialcasestring
but I am trying to match the case without literally setting one string equal to the other.
I need to do it this way because the original string
"stringcheck" has special formatting in a richtextbox and when i use rtb.seltext = specialcasestring, however
rtb.seltext = StrConv(rtb.seltext, vbProperCase) allows formatting to remain but is not the desired case setting.