N
Nexus
I have a pop-up box to allow the user to select a
specific record to edit. How is it that no matter which
record I select to edit, the form will still show the
first record in the table?
Here are my codes:
Private Sub cmdEdit_Click()
Dim strCatID As String
strCatID = Me![cmbCatID]
DoCmd.Close
DoCmd.OpenForm "frmTools"
DoCmd.FindRecord strCatID, , True, , True, , True
End Sub
specific record to edit. How is it that no matter which
record I select to edit, the form will still show the
first record in the table?
Here are my codes:
Private Sub cmdEdit_Click()
Dim strCatID As String
strCatID = Me![cmbCatID]
DoCmd.Close
DoCmd.OpenForm "frmTools"
DoCmd.FindRecord strCatID, , True, , True, , True
End Sub