I am converting some code from an Access MDB to an ADP.
I have the following code that runs from a combo box on a form that is NOW based on a stored procedure:
Dim lngECN As Long
lngECN = Me![cbx-FindECNReq].Column(0)
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ECN]=" & lngECN
Me.Bookmark = Me.RecordsetClone.Bookmark
How do I do the equivilent with the stored procedure as the record soruce??
I have the following code that runs from a combo box on a form that is NOW based on a stored procedure:
Dim lngECN As Long
lngECN = Me![cbx-FindECNReq].Column(0)
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ECN]=" & lngECN
Me.Bookmark = Me.RecordsetClone.Bookmark
How do I do the equivilent with the stored procedure as the record soruce??