how can i Integration all texts from a column in a form to a textBox ?
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?
Replace your sub com1_Click with following block. Hope this helps . . .