Hello everyone.
Im pretty newby in access and VBA. Two weeks ago i started create some base to collect data in lab.
But now im stuck in navigation form.
I have form called fmLabTest with continuous subform fmLabNagList that lists all the records of the fmLabTest record source.
I added a VBA code in the fmLabNagList to execute GoToRecord, showing the same record number in fmLabTest
It works, but when puted fmLabTest into navigation form navLab then problem started.
I tryed some examples from net but i can't figure how solve this problem
.
Im pretty newby in access and VBA. Two weeks ago i started create some base to collect data in lab.
But now im stuck in navigation form.
I have form called fmLabTest with continuous subform fmLabNagList that lists all the records of the fmLabTest record source.
I added a VBA code in the fmLabNagList to execute GoToRecord, showing the same record number in fmLabTest
Code:
Private Sub Form_Click()
Dim Reco As Integer
Reco = CurrentRecord
DoCmd.GoToRecord acDataForm, "fmLabTest", acGoTo, Reco
End Sub
I tryed some examples from net but i can't figure how solve this problem

Last edited: