Quote:
Originally posted by Jethro
' Need to check there are actual records, and
' position first...if ya want to update all records
'
if Not frmHistory.data3.Recordset.BOF and Not frmhistory.data3.Recordset.Eof Then
frmHistory.data3.Recordset.MoveFirst
Do
frmHistory.data3.Recordset.Edit
frmHistory.data3.Recordset!Text2 = "" & Text3
frmHistory.data3.Recordset.Update
frmHistory.data3.Recordset.MoveNext
If frmHistory.EOF Then Exit Do
Loop
End If
well it doesnt seem to work. it doesnt even update the second record. it stay with the first record I enter.if i enter a new record it doesnt appear.