E
Emma
I have a Main form that has an option group that filters a
combobox on a subform.
My option group AfterUpdate code is a simple requery, as
follows:
Private Sub Discipline_Frame_AfterUpdate()
Forms!Frm_Jobs_Emma!Sfrm_Tbl_Lit_Broch_Line!
Lit_Broch_Combo.Requery
End Sub
The row source of my combobox currently has the following
SQL statement:
SELECT tbl_Lit_Broch.Discipline,
tbl_Lit_Broch.Description, tbl_Lit_Broch.ID FROM
Tbl_Lit_Broch WHERE tbl_Lit_Broch.Discipline=Forms!
frm_Main.Discipline_Frame;
I would like that when Option 4 is selected that the
filter not run. How would I accomplish this?
combobox on a subform.
My option group AfterUpdate code is a simple requery, as
follows:
Private Sub Discipline_Frame_AfterUpdate()
Forms!Frm_Jobs_Emma!Sfrm_Tbl_Lit_Broch_Line!
Lit_Broch_Combo.Requery
End Sub
The row source of my combobox currently has the following
SQL statement:
SELECT tbl_Lit_Broch.Discipline,
tbl_Lit_Broch.Description, tbl_Lit_Broch.ID FROM
Tbl_Lit_Broch WHERE tbl_Lit_Broch.Discipline=Forms!
frm_Main.Discipline_Frame;
I would like that when Option 4 is selected that the
filter not run. How would I accomplish this?