After which I implemented the following code
CODE
Private Sub Form_BeforeUpdate(Cancel As Integer)
Text140.Value = Text59.Value
Text141.Value = Text61.Value
Combo136.Value = Combo38.Value
Combo138.Value = Combo44.Value
Text114.Value = Date.Value
Text116.Value = Text65.Value
Text118.Value = Text67.Value
Text120.Value = Text69.Value
Text122.Value = Text71.Value
Text124.Value = hr.Value
Text126.Value = hr1.Value
Text128.Value = hr2.Value
Text130.Value = thr.Value
Text132.Value = text 73.Value
Text134.Value = Notes.Value
End Sub
Text140.Value = Text59.Value
Text141.Value = Text61.Value
Combo136.Value = Combo38.Value
Combo138.Value = Combo44.Value
Text114.Value = Date.Value
Text116.Value = Text65.Value
Text118.Value = Text67.Value
Text120.Value = Text69.Value
Text122.Value = Text71.Value
Text124.Value = hr.Value
Text126.Value = hr1.Value
Text128.Value = hr2.Value
Text130.Value = thr.Value
Text132.Value = text 73.Value
Text134.Value = Notes.Value
End Sub
This however only copies the information from the last changed or entered recordset. I would want it to show the last viewed, changed or entered recordset in my unbound column.
I think the simple solution to my problem lies in changing
CODE
Private Sub Form_BeforeUpdate(Cancel As Integer)
to something other than beforeUpdate?
Another alternative would be to have two bound recordsets if that is possible and have one be the current that navigation affects and the other one always display the recordset in the first one after navigation (so not necessarily the "previous" recordset in the table if the user for instance jump to a new recordset).
edit: anyway... I don't know how to do either so any help and pointers would be greatly appreciated.
Edited by: JJ1 on Tue Nov 25 17:56:53 EST 2008.