views:

106

answers:

2

Hi

I've implemented a search using the TFindDialog on my form. Everything works well except that I cannot find a way to mimic the "F3 - Find Next" behaviour as in Notepad. Once you have entered a search string, pressing F3 finds the next instance without opening the search dialog.

Regards, Pieter.

A: 

Here's a sketch how one could do this:

type
  TForm1 = class(TForm)
    FindDialog1: TFindDialog;
    procedure FindDialog1Find(Sender: TObject);
    procedure SearchFind1Execute(Sender: TObject);
    procedure SearchFindNext1Execute(Sender: TObject);
  private
    FSearchText: string;
    procedure Search;
  end;

and

procedure TForm1.Search;
begin
  // Do the real searching here...
  MessageBox(Handle, PChar('Looking for "' + FSearchText + '".'), nil, 0);
end;

procedure TForm1.SearchFind1Execute(Sender: TObject);
begin
  // Triggered by Ctrl-F
  FindDialog1.FindText := FSearchText;
  FindDialog1.Execute;
end;

procedure TForm1.SearchFindNext1Execute(Sender: TObject);
begin
  // Triggered by F3
  if FSearchText = '' then
    SearchFind1.Execute
  else
    Search;
end;

procedure TForm1.FindDialog1Find(Sender: TObject);
begin
  // Triggered by button click in FindDialog1
  FSearchText := FindDialog1.FindText;
  Search;
end;
Ulrich Gerhardt
That works. I only needed to call the 'Find' method of the FindDialog again. I also need to set 'FindDialog1.Options := FindDialog1.Options + [frFindNext];'. Thank you.
Pieter van Wyk
`Find` is protected (at least in D2007). How do you call it? Maybe it's a better idea to factor out the "real" search code into a method that you call both in your OnFind handler and the F3 click handler. Then there's no need to mess with frFindNext etc. (Disclaimer: all untested :-))
Ulrich Gerhardt
The FindDialog has a OnFind method. That is where all the code goes to do the search.
Pieter van Wyk
That's the wrong place. I'll update my answer.
Ulrich Gerhardt
A: 

Alternativaly you could try the standard actions TSearchFind/TSearchFindNext. However I haven't tried them myself, so I can't say how well they work in practice.

Ulrich Gerhardt