cairo207
IS-IT--Management
- Jan 2, 2003
- 13
Need help to convert VBA to Macro. A combo box, named cboSelect, selects a record to view but I am forever receiving a Network problem. Can anyone assist in converting the following:
Private Sub cboSelect_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[EvalNo] = " & Str(Me![cboSelect])
Me.Bookmark = rs.Bookmark
End Sub
to a macro which I hope will not encounter this recurring network problem?
Thanks
Private Sub cboSelect_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[EvalNo] = " & Str(Me![cboSelect])
Me.Bookmark = rs.Bookmark
End Sub
to a macro which I hope will not encounter this recurring network problem?
Thanks