The following code displays all the text in line 1 of the textbox:
msgbox(TextBox1.Lines(0))
now when i try to set / change in any way that line to different text it wont change for some reason (even properties like toupper don't work):
TextBox1.Lines(0) = StrReverse(TextBox1.Lines(0))
*any way to change a specific line the same way or im doing something wrong / another way to do this using the lines property* (doing string.replace does work but it does cause problems if there are identical lines ---> also you could also select the text and even identical lines wouldn't be a problem if you knew the position)
so basically my question is between the stars & any info on why the method i tried doesn't work would be appreciated.
_______
thanks
msgbox(TextBox1.Lines(0))
now when i try to set / change in any way that line to different text it wont change for some reason (even properties like toupper don't work):
TextBox1.Lines(0) = StrReverse(TextBox1.Lines(0))
*any way to change a specific line the same way or im doing something wrong / another way to do this using the lines property* (doing string.replace does work but it does cause problems if there are identical lines ---> also you could also select the text and even identical lines wouldn't be a problem if you knew the position)
so basically my question is between the stars & any info on why the method i tried doesn't work would be appreciated.
_______
thanks