Fields from TfrxDataSet
How do you get all the fields into a TstringList via script? I want to do something like:
var
  data_list: TStringList;
  estDataList: TfrxDataSet;
begin
  estDataList := Report.GetDataSet('EstData');
  [color=#FF0000]data_list := estDataList.GetFields();[/color]
end.
Comments
The name of the Procedure GetFieldList makes sense, what throws me off is the fact that you pass an empty TStringList to it.... to me it would make more sense to call the procedure and have it just return a TStringList.