Re: How to re-populate DBgrid after doing a search
From: Richard Caruana (caruanar_at_acay.com.au)
Date: 03/17/05
- Next message: Del M: "Re: Building master detail relationship"
- Previous message: Barak zabari: "Re: Building master detail relationship"
- In reply to: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Next in thread: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Reply: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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
- Next message: Del M: "Re: Building master detail relationship"
- Previous message: Barak zabari: "Re: Building master detail relationship"
- In reply to: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Next in thread: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Reply: Barak zabari: "Re: How to re-populate DBgrid after doing a search"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]