Subject RE: [IBO] TIB_IncSearch properties
Author Jason Wharton
I can't think of any one simple change I made that would account for this
change of behavior. This will require some research. It could be a change
in the grid behavior or the IncSearch or both. What I would appreciate here
in a case like this is a simple sample application that demonstrates the
problem you are having.

Jason


> -----Original Message-----
> From: IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com]On
> Behalf Of Steve Fields
> Sent: Tuesday, January 24, 2006 10:42 AM
> To: IBObjects@yahoogroups.com
> Subject: [IBO] TIB_IncSearch properties
>
>
> With the new release some of the components have
> changed how they react/work:
> With 4.5B I was able to work tihe the TIB_IncSearch
> where when the user pressed VK_RETURN the focus would
> jump to a linked TIB_Grid. Setting ClearOnExit to
> false would allow the user to then work in the grid.
> Now when the user presses return the search field
> blanks and the record that was _selected_ at the time
> is no longer accessible. Even with pressing backspace
> numerous times to clear the search field it still does
> not work. After pressing keys to find a new key, after
> hitting return again, THAT record is no longer visible.
> A simple table of a key, a code field, and a string
> description field. All fields are in the ordering/searching
> links. The TIB_IncSearch field is linked to the table
> (TIB_Query) and the key field (Text field). In the
> OnKeyDown of the search field is:
> if Key = VK_RETURN then grdList.SetFocus;
>
>
> Have things changed how this component works?
>
> Thanks,
> Steve Fields