Check Datasets

edited 10:24AM in FastReport 3.0
Hi,

how can I check Datasets in menu Report/Data on design editor in my program and refresh datasets in "Data tree"

Comments

  • edited April 2006
    Solve:
     for i := 1 to NumDB do
     begin
     ?  DB[i]:=TfrxUserDataSet.Create(self);
     ?  DB[i].UserName:='DB'+inttostr(i);
     ?  DB[i].RangeEnd := reCount;
     ?  if i = 1 then frxReport1.DataSets.Add(DB[i]); //only DB1 is checked
     ?  frxReport1.EnabledDataSets.Add(DB[i]); //others are unchecked
     end;
    

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.