Dataset Update Filter Location - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:57:29Z http://stackoverflow.com/feeds/question/463583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/463583/dataset-update-filter-location 1 Dataset Update Filter Location Christopher Chase 2009-01-20T23:44:56Z 2009-01-21T00:01:29Z <p>This has always bugged me to what is the best way to do the following...</p> <p>with a simple one to many db, when you have 2 tables/grids on a form and the 2nd one filtered by the first. </p> <p>where is the best place to put the filter code<br /> ie:</p> <pre><code>procedure TForm1.tblCustormersAfterScroll(DataSet: TDataSet); begin if tblCustormersCustormerID.AsString &lt;&gt; '' then begin tblCustormersThings.Filter := 'CustormerID = ' + tblCustormersCustormerID.AsString; tblCustormersThings.Filtered := true; end; end; </code></pre> <p>AfterScroll seems to work most of the time, but donst get fired on some events eg after posting. Normally i would have a procedure to do the filter update and put it where ever it seems to be needed.</p> <p>But i was wondering if there is a better way, this seems like simply stuff delphi should know about...</p> <p>I Dont think it matters but im Using Delphi7 and NexusDB1</p> http://stackoverflow.com/questions/463583/dataset-update-filter-location/463616#463616 4 Answer by dmajkic for Dataset Update Filter Location dmajkic 2009-01-21T00:01:29Z 2009-01-21T00:01:29Z <p>You should set <strong>MasterSource</strong> and master fields properties on "many" side. </p> <p>It is called Master - Detail relationship, and you should check with NexusDB help for a way to crate this relation ship between tables. </p> <p>If your table supports indexes, than you can create index on <strong>CustomerID</strong> and also use <strong>SetRange()</strong> method.</p> <p>The way you set Filter is the slowest one.</p>