
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
look at page property
-
create a child band, put the second matrix there
-
it????????¬???????s just a thought : 1. set report to double-pass 2. at first-pass : calculate the height of detail data 3. at final-pass : page break is done by adjusting header's height 4. look at my sample (groups.frx & data.xml), i could…
-
autosize = true http://www.fast-report.com/en/forum/?p=/discussion/14938
-
dotnet core has a problem with unicode font. i solved this problem with running another webapi (classic dotnet framework) on IIS or windows service (self-hosted webapi) from webapi core: Â Â Â Â Â Â Â Â [HttpGet("Pdf")] Â Â Â Â Â Â Â Â public asy…
-
            // report object             FastReport.Report report = new FastReport.Report();             report.RegisterData(matrixDemo, "MatrixDemo", maxNestingLevel: 1);                     …
-
https://www.fast-report.com/en/forum/index....mp;hl=parameter
-
https://www.fast-report.com/en/forum/index....c=13993&hl=
-
should be no problem with generic list... List matrixDemo = new List(); report.RegisterData(matrixDemo, "MatrixDemo", maxNestingLevel: 1);
-
you must set report 'double pass' = true to fix the problem first pass : detect rowNumber, make a correction if needed, put the result into list final pass : just display from list   public class ReportScript   {     private List list …
-
http://converter.telerik.com/
-
'Abs(number) macro' is just a wrapper of System.Math.Abs method https://docs.microsoft.com/en-us/dotnet/api...framework-4.7.2 maybe you hit the variable Min/Max Value
-
1. one frx file contains two pages => see picture 2. two frx files merged FastReport.Report report = new FastReport.Report(); report.Preview = previewControl1; report.RegisterData(data1, "NorthWind"); report.RegisterData(data2, "Categories Bus…
-
no detected problem when using save the report as excel 2007 (report toolbar)
-
https://www.fast-report.com/en/forum/index....c=14722&hl=
-
there is no 'offline' demo version for online designer, go to fastreport website to see the demo
-
just ignore 'total per page', you only need group header/footer, report summary, and totals
-
just send filtered data to fastreport // original data List> list = new List>() { Â Â Â Â new Tuple(1, "AAA", 1), Â Â Â Â new Tuple(2, "AAA", 1), Â Â Â Â new Tuple(3, "AAA", 1), Â Â Â Â new Tuple(4, "BBB", 1), Â Â Â Â new Tuple(5, "BBB", 1),…
-
because you're using data sort, use textobject in your layout
-
https://www.fast-report.com/en/forum/index....custom+function https://www.fast-report.com/en/forum/index....custom+function mscorlib : Value was either too large or too small for a Decimal. check the value with decimal.maxvalue and decimal.…
-
you must set 'double pass' = true, create data relation, and use group header/footer
-
you get mixed up, there are 2 methods of datasource: 1. push data, from main app, report.registerdata don't do this : report.Dictionary.Connections.Add(conn); 2. pull data, define db connection and table in report template you can alter the co…
-
look at this working example, https://mega.nz/#!w00lXSCL!H8uuUmMJ...Frz5jRbQ8JWrKBc
-
have you set datasource in databand?
-
i will prefer your method, adding datacolumn, why?, doing something in script is not optimized because fastreport use reflection to do that, in terms of speed, reflection is slow. for reference: https://benohead.com/three-options-to-dynam...te-c…
-
i dont have any clue what you did, works fine for me (visual studio 2017 v15.7.4)
-
learn it from my attachment, full working visual studio project
-
next time, could you make it bilingual in your question, like this: https://www.youtube.com/watch?v=5OGP_GrgoAQ
-
type %localappdata% in Windows Explorer and hit Enter. There is FastReport.config in folder 'FastReport'
-
2 ways to create datasource: 1. fastreport as standalone, pull data from database with built-in classes 2. push data from main application (winforms, wpf, web apps) to fastreport i attached samples for demonstration: 1. instagram.frx , standal…