Report designer specifying dataset in code and also how to hide the reports dataset option
Hi Can I specify the default dataset to use when calling the designer from code? I presumed it would be something like the below, however this does not work.
Also it it possible to hide the select reports dataset option in the report designer.
frxrptDesigner.Designer.Report.DataSet:=FRXDBADataset;
frxrptDesigner.DesignReport(True);
thanks
meee
Also it it possible to hide the select reports dataset option in the report designer.
frxrptDesigner.Designer.Report.DataSet:=FRXDBADataset;
frxrptDesigner.DesignReport(True);
thanks
meee
Comments
frxreport1.Clear;
frxreport1.DataSets.Add(frxdbdataset1);
frxreport1.DesignReport;
Thanks for the reply, also is there a way to hide the Also it it possible to hide the select reports dataset option in the report designer.
thanks
Mee