Hello Everyone!!!
It's Mattmeat again...
I have this code in a datasheet form:
Private Sub WorkOrderNo_DblClick(Cancel As Integer)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "WorkOrdersWorkingTwo"
stLinkCriteria = "[WorkOrderNo]=" & Me![WorkOrderNo]
DoCmd.Close
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Maximize
End Sub
This is from a form that finds a specific record in another form (filtering) and opens it. The problem that I have with this, is that I'm having is that this code will not let me scroll through the other records in the form. It limits the availability to just one record. I still need to find a specific record, but I also need availability of all the other records in the form in case the user wants to edit another record without going back to the first form (list of service order numbers). How can this be done?
It's Mattmeat again...
I have this code in a datasheet form:
Private Sub WorkOrderNo_DblClick(Cancel As Integer)
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "WorkOrdersWorkingTwo"
stLinkCriteria = "[WorkOrderNo]=" & Me![WorkOrderNo]
DoCmd.Close
DoCmd.OpenForm stDocName, , , stLinkCriteria
DoCmd.Maximize
End Sub
This is from a form that finds a specific record in another form (filtering) and opens it. The problem that I have with this, is that I'm having is that this code will not let me scroll through the other records in the form. It limits the availability to just one record. I still need to find a specific record, but I also need availability of all the other records in the form in case the user wants to edit another record without going back to the first form (list of service order numbers). How can this be done?