F
Fred
when I try to run this query in the subform to fill in the fields I get error
on Me.Bookmark = rs.Bookmark
Can anyone help me fix this?
Private Sub Combo12_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[DistID] = " & Str(Me![Combo12])
Me.Bookmark = rs.Bookmark
End Sub
on Me.Bookmark = rs.Bookmark
Can anyone help me fix this?
Private Sub Combo12_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[DistID] = " & Str(Me![Combo12])
Me.Bookmark = rs.Bookmark
End Sub