Subject Re: [IBO] TIB_SearchPanel
Author Luiz Alves
Geoff,
> > When using a TIB_SearchPanel, is there a way to turn invisible some
> > fields?
>
> I think you can use ShowVisibleFieldsOnly to only show those fields
> that are visible according to the FieldsVisible property.
>
> Alternatively use GridLinks to show only specific fields.
>
When I put a tib_searchpanel in my form, your tip works ok using GridLinks.

Now, I have a TIB_LookupDialog and I am using on event OnInitDialog:

procedure TfrmFaturamento.lkMedicoInitDialog(Sender: TIB_BaseDialog;
ADialog: TfrmBase);
begin
with (ADialog as TfrmLookup) do begin
Width:=340;
grLookup.GridLinks.Clear;
grLookup.GridLinks.Add('Nr');
grLookup.GridLinks.Add('Nome');
end;
end;

But, It doesn't work as expected.
I have a field needed to insensitive case search called UPNOME that always
is showing.

Do you know some workaround?

Regards,

Luiz.