A
AlCamp
Billy,
I take it you mean that you can filter by using the right click
"shortcut" menu, and selecting a filter function.
If you want to do the same by code, check out "Filter Property" in HELP.
It's very straight forward. You tell Access what the filter is, and then
you turn it On/Off as needed.
ex.
Me.Filter = "Country = 'USA'"
Me.FilterOn = True
hth
AlCamp
I take it you mean that you can filter by using the right click
"shortcut" menu, and selecting a filter function.
If you want to do the same by code, check out "Filter Property" in HELP.
It's very straight forward. You tell Access what the filter is, and then
you turn it On/Off as needed.
ex.
Me.Filter = "Country = 'USA'"
Me.FilterOn = True
hth
AlCamp