Subject Re: [IBO] Filtered Indicator
Author Harald Klomann
Gary Cheeseman wrote:
>
> I seem to be back with my original problem then!
> Which was:-
> I am using the TIB_SearchBar on a form and its working fine. Howerver I
> would like to put somw indicator onto the for to show when the dataset is
> filtered (e.g. change colour of status bar). Please help.
>

Gary,

in this case use IB_Query1.SQLWhereChanged.

if IB_Query1.SQLWhereChanged
then ...
else ....

Harald