E
EdHaddock
I have a need to run the following code from a macro:
Private Sub Combo14_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ProjectName] = '" & Me![Combo14] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Can this be converted to a macro or can it be run from an existing macro? Any
help is appreciated. Thanks Ed
Private Sub Combo14_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ProjectName] = '" & Me![Combo14] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Can this be converted to a macro or can it be run from an existing macro? Any
help is appreciated. Thanks Ed