this code can add all text from table to textbox in form
is it any way to add all text from Fields in form in to textbox in same form?
Code:
Set db = CurrentDb
Set rs = db.OpenRecordset("names")
For i = 1 To rs.RecordCount
text1.SetFocus
text1.Text = text1.Text & " " & rs(1)
rs.MoveNext
Next i
is it any way to add all text from Fields in form in to textbox in same form?