Re: How to re-populate DBgrid after doing a search

From: Richard Caruana (caruanar_at_acay.com.au)
Date: 03/17/05


Date: Thu, 17 Mar 2005 20:30:51 +1100

Very Good, thank you the SQL notes helped me.

I was able to get grid to refresh using

procedure TForm1.Button6Click(Sender: TObject);
begin
        ADOQuery1.Close;
        ADOQuery1.Sql.Clear;
        ADOQuery1.Sql.Add ('Select * from dictionary');
        ADOQuery1.Open;
end;

I did a search (this project uses 3rd party component Rubicon2 using ADO
bridging.) on the word "dieu" which found recno:=20795

after the table refreshes how do I get it to go to recno:=20795 ?

any help is appreciated

Richard