dim myString as string = "myvalue"
'now you can use
myString.ToUpper()
'or
myString.ToLower()
dim lower, upper as char (string * 1 whatever)
if upper >= asc("A") then
lower = chr(asc(upper)-offset)
end if
' ***
if lower <= asc("z") then
upper = chr(asc(lower)+offset)
end if
Because Renegade asked for a solution that didn't involve "VB.Net's predefined functions".Cywizz said:I don't see why it would be that strange of a request
Sorry man, re-read the original post.....me bad...Because Renegade asked for a solution that didn't involve "VB.Net's predefined functions".