M
Mark Kubicki
i had a from with a combobox: cmbFilter
and this code behind it...
cmbFilter_BeforeUpdate()
Me.Filter = "[Source] = '" & Me![cmbFilter] & "'"
Me.FilterOn = True
this worked fine...
then i added an option group with 2 controls: optShowAll, and optFilterList
(with respective functions)
and added this code behind each:
optShowAll_GotFocus()
me.cmbFilter.enabled = False
me.FilterON = False
optFilterList_GotFocus()
me.cmbFilter = ""
me.cmbFilter.enabled = True
now, basically nothing works... (what am i missing - any suggestions wouldbe
greatly appreciated)
thanks in advance,
-m.
and this code behind it...
cmbFilter_BeforeUpdate()
Me.Filter = "[Source] = '" & Me![cmbFilter] & "'"
Me.FilterOn = True
this worked fine...
then i added an option group with 2 controls: optShowAll, and optFilterList
(with respective functions)
and added this code behind each:
optShowAll_GotFocus()
me.cmbFilter.enabled = False
me.FilterON = False
optFilterList_GotFocus()
me.cmbFilter = ""
me.cmbFilter.enabled = True
now, basically nothing works... (what am i missing - any suggestions wouldbe
greatly appreciated)
thanks in advance,
-m.