Search results

  1. M

    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?
  2. M

    Is the ELookUp or DLookUp function can be Brings all the rows ?

    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
Back
Top Bottom