Tale Masinov
Tale Masinov
About
- Username
- Tale Masinov
- Location
- Skopje, Macedonia
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
I found what the problem was. FastReport interprets differently between IEnumerable types. I used generic list of objects ( List ). I tried it with ArrayList and it works. Thanks anyway
-
AlexTZ wrote: » Hello, Did you register the data source in a report using the report.RegisterData call? Please look at the demos to see how to do this: Demos\C#\DataFromBusinessObject Demos\C#\Main Yes I did that... but.... [img]style_…
-
I noticed also this : public class Test1 { public string TestField1 { get; set;} } public class Test2 : Test1 { public string TestField2 { get; set;} } //in my FastReport code List testList = new List(); // .... add objects .... report.R…