m00j
IS-IT--Management
- Oct 5, 2009
- 3
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?
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?