Is there a way to do a text search in a string grid using a find dialog? I need to find a text and highlight it's background as usually when a text is found.

Thanks!

link|improve this question

What part of this do you need help with? Is the problem searching for text within the grid, or how to highlight it? – David Heffernan Aug 10 '11 at 10:14
@David Heffernan, how to highlight it? Please. – maxfax Aug 10 '11 at 10:24
You can highlight a cell in a string grid, by selecting it. Andreas' answer covers that too. – Warren P Aug 10 '11 at 17:09
feedback

1 Answer

up vote 8 down vote accepted

Like this:

procedure TForm1.FormClick(Sender: TObject);
begin
  FindDialog1.Execute(Handle)
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  FindDialog1.Options := [frDown, frHideWholeWord, frHideUpDown];
end;

procedure TForm1.FindDialog1Find(Sender: TObject);
var
  CurX, CurY, GridWidth, GridHeight: integer;
  X, Y: integer;
  TargetText: string;
  CellText: string;
  i: integer;
  GridRect: TGridRect;
label
  TheEnd;
begin
  CurX := StringGrid1.Selection.Left + 1;
  CurY := StringGrid1.Selection.Top;
  GridWidth := StringGrid1.ColCount;
  GridHeight := StringGrid1.RowCount;
  Y := CurY;
  X := CurX;
  if frMatchCase in FindDialog1.Options then
    TargetText := FindDialog1.FindText
  else
    TargetText := AnsiLowerCase(FindDialog1.FindText);
  while Y < GridHeight do
  begin
    while X < GridWidth do
    begin
      if frMatchCase in FindDialog1.Options then
        CellText := StringGrid1.Cells[X, Y]
      else
        CellText := AnsiLowerCase(StringGrid1.Cells[X, Y]);
      i := Pos(TargetText, CellText) ;
      if i > 0 then
      begin
        GridRect.Left := X;
        GridRect.Right := X;
        GridRect.Top := Y;
        GridRect.Bottom := Y;
        StringGrid1.Selection := GridRect;
        goto TheEnd;
      end;
      inc(X);
    end;
    inc(Y);
    X := StringGrid1.FixedCols;
  end;
TheEnd:
end;

This code can easily be extended to support searching backwards ('up'), and you might also want to implement the 'match whole word' feature.

Perhaps you want to select only the matched text, and not the entire cell? Then do

  if i > 0 then
  begin
    GridRect.Left := X;
    GridRect.Right := X;
    GridRect.Top := Y;
    GridRect.Bottom := Y;
    StringGrid1.Selection := GridRect;
    GetParentForm(StringGrid1).SetFocus;
    StringGrid1.SetFocus;
    StringGrid1.EditorMode := true;
    TCustomEdit(StringGrid1.Components[0]).SelStart := i - 1;
    TCustomEdit(StringGrid1.Components[0]).SelLength := length(TargetText);
    goto TheEnd;
  end;

instead. But this will steal the focus from the find dialog, and so the user will not be able to press Return to select the next match, which might be annoying.

link|improve this answer
2  
+1 for sneaking a use of goto into the code. In production code where you were iterating over grids a lot then you may well write some enumerators that flattened the grid so you could walk it with a for in loop. – David Heffernan Aug 10 '11 at 11:03
3  
I like David's enumerator idea. And in production I would be tempted not to use a StringGrid at all, but rather to use a VirtualTreeView control, used as a grid, and to have a model object contain the content of my document, which is displayed in the grid, and which implements a memento/command-pattern and has undo/redo features. Also, I would implement a pony. – Warren P Aug 10 '11 at 15:24
@Andreas Rejbrand, an excellent, complete answer!!! 1000 thanks for you! – maxfax Aug 10 '11 at 17:39
1  
@maxfax: That is the inplace editor. When you edit the text in one of the cells, the editor pops up (it is like a TEdit with no border) and is positioned above the cell. Since this editor control is a child of the string grid, and also the only child (at the very least, the first one), you can access it via the Components array. – Andreas Rejbrand Aug 10 '11 at 18:11
1  
@maxfax: There is only an inplace editor if the cells are editable (of course!). You have to have goEditing in Options, and the editor has to be created. (It is automatically, since my code above does EditorMode := true.) If you don't want the cells to be editable, you'll have to do custom painting to select (highlight) only the sought text, and not the entire cell... – Andreas Rejbrand Aug 10 '11 at 18:37
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.