P
Penstar
I have a form and its recordset is an ADODB recordset (I call it through a
stored procedure in mySQL)
I am trying to put a combo box on my form to select a members name and go to
that particular record.
Question Part A: I am unsure what to put in the combo's Row Source Type and
Row Source properties.
Question Part B: I don't know what to put in the VB After Update event.
Testing (using an access table as rowsource)
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[members_membid] = " & Str(Nz(Me![Combo0], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
The VB doesent like the "rs.FindFirst" saying Runtime error 348 Object
doesn't support this property or method.
Any help would be appreciated.
stored procedure in mySQL)
I am trying to put a combo box on my form to select a members name and go to
that particular record.
Question Part A: I am unsure what to put in the combo's Row Source Type and
Row Source properties.
Question Part B: I don't know what to put in the VB After Update event.
Testing (using an access table as rowsource)
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[members_membid] = " & Str(Nz(Me![Combo0], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
The VB doesent like the "rs.FindFirst" saying Runtime error 348 Object
doesn't support this property or method.
Any help would be appreciated.