Subject Re: [IBO] Contact Demo: How to use the History Search Panel?
Author Luiz
Raymond ,

The search panel can be used entering search criteries and apply a post.
You could try with it.


procedure TfrmContact.pcContactChange(Sender: TObject);
begin
// If in Search mode is all you need to do is click on the Browse tab and
the
// matching records are displayed.
if pcContact.Activepage = tsBrowse then begin
with dmContact.qrContact do begin
if not BufferActive then Open;
end;
end;
if pcContact.Activepage = tsHistory then begin
if not (dmContact.qrHistory.state in [dssSearch]) then // I add
dmContact.qrHistory.Open;
end else begin
dmContact.qrHistory.Close;
end;
end;

----- Original Message -----
From: "Raymond Kennington" <progsol@...>
To: "IBObjects" <ibobjects@yahoogroups.com>
Sent: Wednesday, October 23, 2002 10:43 AM
Subject: [IBO] Contact Demo: How to use the History Search Panel?


> Whenever I click on the History tab after going into Search mode the
HistorySearchPanel
> disappears.
>
> How can I make it stay visible and how is that search panel to be used?
> --
> Raymond Kennington
> Programming Solutions
> W2W Team B