textbox
hiya all
how do i remove the first and last characters from a textbox
please help
thankx in advance
Rob
[135 byte] By [
Spumbu1977] at [2007-11-11 8:07:42]

# 3 Re: textbox
NewText=mid$(textbox.text,2,len(textbox.text)-2)
where ,2, specifies the first char you want to pick up - namely the 2nd char, and len(textbox.text) specifies the no. of chars in total, and so len(textbox.text) -2 will be the no. of chars returned.
gupex at 2007-11-11 17:28:01 >
