hi all,
I am trying to append several rows of comments from a table to a single text box. I am trying to put each new row on a new line using 'vbcr' but when i check the text box the rows are not on seperate lines but seperated with black lines as below......
comment1lcomment2lcomment3lcomment4etcl
here's what i'm using....
Can anyone help?
Cheers,
Spinkung.
I am trying to append several rows of comments from a table to a single text box. I am trying to put each new row on a new line using 'vbcr' but when i check the text box the rows are not on seperate lines but seperated with black lines as below......
comment1lcomment2lcomment3lcomment4etcl
here's what i'm using....
Code:
Do
Me.comments.Value = LTrim(RTrim(rs1("comments").Value)) & vbCr & Me.comments.Value
rs1.MoveNext
Loop Until rs1.EOF
Can anyone help?
Cheers,
Spinkung.