G
Guest
I created a form with two subforms on it and a combo box to search the
records.
If I select a name in the combo box and minimize the form and then open each
of the subforms they return the proper info. But when I open the form with
both subforms included in the main form they are blank. I tried adding this
to my combo's box Afterupdate - but I just get error message.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![cboComboSearch])
Me.Bookmark = rs.Bookmarkd adding this to the Afterupdate on my combo box
Any Ideas ?
records.
If I select a name in the combo box and minimize the form and then open each
of the subforms they return the proper info. But when I open the form with
both subforms included in the main form they are blank. I tried adding this
to my combo's box Afterupdate - but I just get error message.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Me![cboComboSearch])
Me.Bookmark = rs.Bookmarkd adding this to the Afterupdate on my combo box
Any Ideas ?