So sorry about the confusion!!

I'm so new I don't even know what all to tell people to help!! But I am learning! Thank you for all your help!!! See below for all of the code. I have a form, with tab controls with subforms on then. I want to be able to select a product from the drop down list and have all the tab control/sub forms be related to that one product.
Thanks!!!
__________________________________________________ ________________
MyRecordSelector Class
Option Compare Database
Option Explicit
Dim WithEvents mcboRecSel As ComboBox
Dim mtxtRecID As TextBox
Dim mfrm As Form
Public Function init(lfrm As Form, lcboRecSel As ComboBox, ltxtRecID As TextBox)
Set mfrm = lfrm
Set mtxtRecID = ltxtRecID
Set mcboRecSel.AfterUpdate = "[Event Procedure]"
End Function
Private Sub Class_Terminate()
'clean up pointers to form and control objects
Set mcboRecSel = Nothing
Set mtxtRecID = Nothing
Set mfrm = Nothing
End Sub
Sub mcboRecSel_AfterUpdate()
Dim strSQL As String
'Build A SQL Statement
strSQL = mtxtRecID.ControlSource & " = " & mcboRecSel
With mfrm
'Find the record that matches the control.
.RecordsetClone.FindFirst strSQL
'Set the forms bookmark to the Recrodset clones bookmark
'("Find" the Record)
.Bookmark = .RecordsetClone.Bookmark
End With
End Sub
__________________________________________________ _________________
Within the form itself
Option Compare Database
Dim fMyRecordSelector As MyRecordSelector
Private Sub Form_Close()
Set fMyRecordSelector = Nothing
End Sub
Private Sub Form_Open(Cancel As Integer)
Set fMyRecordSelector = New MyRecordSelector
fMyRecordSelector.init Me, cboRecSel, txtRecID
End Sub
Sarah W
NGIT