Used to sort and filter data in a client-side Recordset object.
The Reset method is called to execute either a filter or a sort on a client-side
Recordset object.
All pending changes to the Recordset must first be saved before calling
Reset or the call will fail.
You can create a filter string using the FilterColumn, FilterCriterion, and the
FilterValue properties.
You can specify the column to be sorted and whether the sort order is be ascending or descending
by using the SortColumn and SortDirection properties.
There is one optional parameter.
objDataControl.FilterColumn = strFilCol
objDataControl.FilterCriterion = strFilCrit
objDataControl.FilterValue = strFilVal
objDataControl.Reset
objDataControl.SortColumn = strSortCol
objDataControl.SortDirection = False
objDataControl.Reset