hi
i have a label and the text of this label is:
label1.text = "bla" & CRLF & "mmm"
what i get is:
bla
mmm
now if i would like to get the last 3 letters i do it like this:
dim txt as string
txt = label1.text.SubString2(3,label1.Text.Length)
everythig until now works great
but now i would like to use "txt" in msgbox, or labels,....
and i always get the CRLF (empty line) and the txt.text
i want only the txt without the CRLF
how can i do it? thank you
i have a label and the text of this label is:
label1.text = "bla" & CRLF & "mmm"
what i get is:
bla
mmm
now if i would like to get the last 3 letters i do it like this:
dim txt as string
txt = label1.text.SubString2(3,label1.Text.Length)
everythig until now works great
but now i would like to use "txt" in msgbox, or labels,....
and i always get the CRLF (empty line) and the txt.text
i want only the txt without the CRLF
how can i do it? thank you