Skip to content

Instantly share code, notes, and snippets.

@MySohoWiki
Created October 26, 2022 05:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MySohoWiki/dc5fef0f71c3235dee3cc684d65b4943 to your computer and use it in GitHub Desktop.
Save MySohoWiki/dc5fef0f71c3235dee3cc684d65b4943 to your computer and use it in GitHub Desktop.
Set dataset on form grid
var
c: TWinControl;
ds :TDataSet
begin
c:= frm.GetControlFromLi('xxx');
ds:= prg.QueryDataSet(frm; 'select ***', Params);
c.SetDS(ds)
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment