Hello,
Due the capacity issue, I have to devide a questionnaire into several froms. I want the data entry person to enter the first record from the first form to the last form, then enter the second record. In addition, I hope he only needs to enter the ID for the first time, then when he opens the next form, the ID will automatically show up. He sees the ID and knows it's still the same record, and he will keep entering the remainning information.
What I did is:
In FormA:
Private Sub StudyID_AfterUpdate()
[ID] = [StudyID]
End Sub
In FormB:
Private Sub ID_Enter()
[FormB.ID] = [FormA.ID]
End Sub
But it didn't work. Can somebody help me? Thank you1
Due the capacity issue, I have to devide a questionnaire into several froms. I want the data entry person to enter the first record from the first form to the last form, then enter the second record. In addition, I hope he only needs to enter the ID for the first time, then when he opens the next form, the ID will automatically show up. He sees the ID and knows it's still the same record, and he will keep entering the remainning information.
What I did is:
In FormA:
Private Sub StudyID_AfterUpdate()
[ID] = [StudyID]
End Sub
In FormB:
Private Sub ID_Enter()
[FormB.ID] = [FormA.ID]
End Sub
But it didn't work. Can somebody help me? Thank you1