G
Guest
I created a subform to be able display my criteria from my 3 combo boxes
On my last combo box i have the following information loaded in my
afterupdate event procedure
Private Sub Combo378_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo378], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
this is the last combo box from my 3 cascading combo boxes
i am trying to display the information from my criteria that i chose on the
3 combo boxes
my 1st combo boxes filters the information on my 2nd box and then filters
on my 3rd box.
when i exit out of the 3rd or choose the 3rd item, i want the data to
display on myt subfolder.
suggestions?
On my last combo box i have the following information loaded in my
afterupdate event procedure
Private Sub Combo378_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo378], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
this is the last combo box from my 3 cascading combo boxes
i am trying to display the information from my criteria that i chose on the
3 combo boxes
my 1st combo boxes filters the information on my 2nd box and then filters
on my 3rd box.
when i exit out of the 3rd or choose the 3rd item, i want the data to
display on myt subfolder.
suggestions?