I don't know how to make the records fire up. I need an After Update, I think, in the second combo box. Can you help me or point me to an article?
There are 2 combo boxes: cboFlcMajorID and cboFlcMinorID.
Their underlying table fields are text. their answers are like 015 or 022 or 777. Unfortunately, the company started their codes with zero. Anyway.
I have the 2 combo box in sync. No problem there.
In the 1st combo cboFlcMajorID, I have an After Update of:
Private Sub cboFlcMajorID_AfterUpdate()
Me.cboFlcMinorID = Null
' Requery the Flc Minor Pick combo
Me.cboFlcMinorID.Requery
End Sub
In the 2nd combo box cboFlcMinorID, is where i am stuck.I bet that i need an AfterUpdate here in order for the records to come up.
For example, if i choose 015 for the major and 010 for the minor, i would like to see 4 records appear. I use a Reset button to bring me all records again.
Can you help me? would you prefer a shorty file posted in my File Dropper? thanks so much. I hope that i answered everything.
There are 2 combo boxes: cboFlcMajorID and cboFlcMinorID.
Their underlying table fields are text. their answers are like 015 or 022 or 777. Unfortunately, the company started their codes with zero. Anyway.
I have the 2 combo box in sync. No problem there.
In the 1st combo cboFlcMajorID, I have an After Update of:
Private Sub cboFlcMajorID_AfterUpdate()
Me.cboFlcMinorID = Null
' Requery the Flc Minor Pick combo
Me.cboFlcMinorID.Requery
End Sub
In the 2nd combo box cboFlcMinorID, is where i am stuck.I bet that i need an AfterUpdate here in order for the records to come up.
For example, if i choose 015 for the major and 010 for the minor, i would like to see 4 records appear. I use a Reset button to bring me all records again.
Can you help me? would you prefer a shorty file posted in my File Dropper? thanks so much. I hope that i answered everything.