this code can add all text from table to textbox in form
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?
Is the ELookUp or DLookUp function can be Brings all the rows Equals with Criteria ?
I think it is Possible by Modified the Criteria ,, but i did not know how .. so who is know ? :rolleyes:
plz add example