learnasugo
Programmer
I am using Access VBA code and trying to select a record from an unbound combo box and I keep getting an error message that says "No current record" Does anyone know what that means? Here is the code.
Private Sub Combo58_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[MMSJob] = '" & Me![Combo58] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Thank you
learnasugo
Private Sub Combo58_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[MMSJob] = '" & Me![Combo58] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Thank you
learnasugo