All
I am using Access 2000
I have created a list of records. When I double click the job number field it opens a new form.
The code i use is this.
I then retype that job number into the job number field on that new form and enter some figures.
Ideally what I would like to do is to double click on the job number and that same number copy into the newly opened form so I can then add my figures.
Thanks
Jacc14
I am using Access 2000
I have created a list of records. When I double click the job number field it opens a new form.
The code i use is this.
Code:
Dim stDocName As String Dim stLinkCriteria As String stDocName = "frm_adjust_magazine_overs" DoCmd.OpenForm stDocName, , , stLinkCriteria
Ideally what I would like to do is to double click on the job number and that same number copy into the newly opened form so I can then add my figures.
Thanks
Jacc14
Comment