Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Delphi 5のTRxQuery(TQueryの子孫)がグリッドにバインドされています。フィルタ編集ボックスを追加していて、ユーザーが入力したときにグリッドをフィルタリングしたいと思います。不要なちらつきが発生するため、クエリを閉じて再度開くことなくデータセットをフィルタリングする方法はありますか?
どうもありがとう
Procedure SetFilter(DS:TDataset;Const Filter:String); begin DS.Filtered := false; DS.Filter := Filter; DS.Filtered := true; end;