Subject | Re: [IBO] TIB_SearchPanel |
---|---|
Author | Luiz Alves |
Post date | 2002-01-18T22:31:31Z |
Geoff,
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.
> > When using a TIB_SearchPanel, is there a way to turn invisible someWhen I put a tib_searchpanel in my form, your tip works ok using GridLinks.
> > 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.
>
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.