
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
https://forum.fast-report.com/en/uploads/398/F4HDUNYEGDUB.png https://forum.fast-report.com/en/uploads/130/WEC46HFAHSBX.zip rewrite the code, much cleaner... [HttpPost("Report")] [Route("Report")] public ModelFastReport Re…
-
dont go looking for trouble rather avoid it. the purpose of reporting is just to create a report, not filtering/manipulating data, just send one table to report generator (remember the good old days of microsoft access era). for filtering data, use …
-
just change : string basePath = Request.PathBase.Value.Replace("/", ""); to : string path = Request.PathBase.Value; string basePath = path.Length == 1 ? "" : path.StartsWith("/") ? path.Substring(1) : path;
-
https://forum.fast-report.com/en/uploads/989/TV03BDH1RJKM.7z Asp.net Core 3.1 single page application, dont forget to copy folder "Reports" to publish folder https://twemoji.maxcdn.com/2/72x72/1f600.png <ItemGroup> <Content Inc…
-
https://forum.fast-report.com/en/uploads/363/GCRPXNMNX9XG.7z Asp.net Core 2.2 single page application, dont forget to copy folder "Reports" to publish folder
-
https://www.fast-report.com/en/blog/155/show/
-
data panel is DictionaryWindow class, try to show/hide => dataWindow.Show(); or dataWindow.Hide();
-
https://forum.fast-report.com/en/uploads/645/7XXXCM6P46FQ.zip
-
since version Version 2019.4: https://forum.fast-report.com/en/uploads/654/2IPDUBHTTD6N.zip + added the ability to subscribe to the PreviewControl.OnPrint and PreviewControl.OnExport events, which are called when the corresponding buttons are click…
-
https://forum.fast-report.com/en/uploads/511/B0E6KWGMSSQM.txt
-
https://forum.fast-report.com/en/uploads/998/KG5AWJ8JKRMN.png
-
you have to buy fastreport license with source code and make your own mods
-
you have to buy fastreport license with source code and make your own mods
-
customer -> contract = one to many contract -> job = one to many https://forum.fast-report.com/en/uploads/419/1EO63KGWEBQP.zip
-
you must have source code to fix the bug
-
download it from nuget: https://www.nuget.org/packages/FastReport.OpenSource/ https://www.nuget.org/packages/FastReport.OpenSource.Web/ https://www.nuget.org/packages/FastReport.Compat/ use pm installer from visual studio: PM> Install-Package D:\…
-
https://stackoverflow.com/questions/1460023/how-can-i-change-the-currentculture-of-the-entire-process-not-just-current-thre
-
https://stackoverflow.com/questions/1460023/how-can-i-change-the-currentculture-of-the-entire-process-not-just-current-thre
-
add a button and set onclick : using (FastReport.Export.Text.TextExport export = new FastReport.Export.Text.TextExport()) { // show the dialog export.Export(report); // export to a file export.Export(report, "d:\\test.txt"); }
-
actually you can still use the designercontrol object, after you attach the report object, call RefreshLayout(); designerControl1.Report = report; designerControl1.RefreshLayout();
-
https://forum.fast-report.com/en/uploads/569/AIZAWJJ0TNAR.zip like this?
-
that is not the way to show the designer, no need to initialize your own designercontrol. Report report = new Report(); report.load(...); report.registerdata(....); report.design();
-
workaround: you may set menu item visibility to false. FastReport.DevComponents.DotNetBar.Bar bar = previewControl1.ToolBar; FastReport.DevComponents.DotNetBar.BaseItem save = bar.Items["btnSave"]; int i = 0; int j…
-
take a good look at report script, try catch will help you
-
https://github.com/FastReports/FastReport/issues/240
-
image is binary data, datatype = byte[]
-
it is all about font licensing, https://forum.fast-report.com/en/discussion/14712/problem-pdf-with-unicode-font#latest
-
using System; using System.Collections; using System.Collections.Generic; using System.Data; using FastReport.Data; namespace FastReport { public class BusinessObject1 { public int id {get; set;} public string parentname {get; set;} } …
-
open untitled.frx with notepad. if you know the data fields, you may add/modify yourself and after adding tabledatasource, you can edit the report without data. report.design(); => push data from application to fastreport and open the designer …
-
sorry, it should be: report1.Design();