Yeah I think we're on the same page. After I pull one of the definitions to be displayed in the text box, I want to skip to a new line before I movenext and pull the next record(definition) to be displayed in the same text box. for example say below are two definitions that are in the recordset:
A small pager that has multiple features for keeping time.
A small pen that can function as a phone.
I want the text box to show the data like it is above. When one definition ends, it moves to the next line and prints the next definition.
Currently it displays them in the text box like this:
A small pager that has multiple features for keeping time.A small pen that can function as a phone.
Here is the code:
Sql = "Select * From Descriptions"
Set Rs = db.OpenRecordset(Sql)
Do While Not Rs.EOF
With Rs
It = It + !Description
Rs.MoveNext
End With
Loop
Me.Text0 = It
Thanks. Hope this is more clear