filter

A

alekm

Hi,
what's the way to set certain value for filter ant to apply it from code?
Thanx
alek_mil
 
A

Allen Browne

Set the Filter property of the form, and turn on its FilterOn property.

Example:
Me.Filter = "Surname = 'Jones'"
Me.FilterOn = True
 
Top