Subject Re: [IBO] Just one quick question about IB_SearchEdit
Author Helen Borrie
At 06:00 AM 29/08/2006, you wrote:
>Just one quick question about IB_SearchEdit.
>
>My example it's very close that you have in example »Searching Links«
>
>My problem is next: first two fields I manage correctly. The third
>field wicht it's nothing special. It' s very close to my second field.
>This statement is (»in prepare statment« )
>
>3:
>SQLWhereItems.Add( 'UPPER(ADDRESS) STARTING WITH :ADDRESS ' );
>
>I also set OrderingItems on the three fields and orderingLinks and
>SearchingLinks.
>
>The problem is next: when I click on the address column the whole Grid
>is empty ( it shouldn't be empty it should be all values that are in
>the table), when I insert first value into IB_SearchEdit it's working
>correctly.
>
>Why is the grid emtpy when I clicked on the column »Address«

When the set goes into dssSearch state, the
contents of the set become unknown. Once the
search *finds* records that match the search key,
you will have a new set in the dataset buffer and
the controls will begin displaying them. When
the search completes, the set's state changes to
dssBrowse and you will be able to navigate it.

>or I
>change value in ComboBox it should be working it is like in a example?

I don't know where a ComboBox fits into this picture...could you explain?

Helen