jackie77
Jackie
- Local time
- Today, 19:24
- Joined
- Jul 18, 2007
- Messages
- 85
I am working on a form for documenting work that is carried out by an engineer, the form has a aults button which brings up a faults form. With the forums help I have managed to transfer the Job ID over to a faults form but I am also looking to transfer the address as well but I’m not sure how to add the code I have tried a few things but they are not working
The following is the code I have used to transfer the Job Id over
any suggesting on what code to add to transfer the address also?
---------
Private Sub Report_Fault_Click()
DoCmd.OpenForm "Reported Faults", acNormal
Forms("Reported Faults").Job_ID = Me.Job_ID
End Sub
---------
Jackie