Text Search in End User Solution
I am trying to get the text search function to work in in Myeurpt demo and
there must be something more to do than to set the textsearch properties of
Tppreport
Has anyone been able to get this work from the preview reporttab of end user
designer
Dennis McGuire
PCFS2000
there must be something more to do than to set the textsearch properties of
Tppreport
Has anyone been able to get this work from the preview reporttab of end user
designer
Dennis McGuire
PCFS2000
This discussion has been closed.
Comments
The text search settings are persistent in the report template. You can
configure them for each end user report that is loaded by using the
OnLoadEnd event of the template. We implemented it this way because we did
not want to force a new feature to be enabled just because you upgraded to
the latest version of RB.
{---------------------------------------------------------------------------
---}
{ TmyEndUserSolution.LoadEndEvent }
procedure TmyEndUserSolution.LoadEndEvent(Sender: TObject);
begin
ppReport1.TextSearchSettings.Enabled := True;
ppReport1.TextSearchSettings.Visible := True;
ppReport1.TextSearchSettings.DefaultString := 'September';
end; {procedure, LoadEndEvent}
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com