
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 482
- Last Active
- Roles
- Members
Comments
-
there are 2 methods: a. easy way : custom function b. hard way : linq
-
after you've defined how many rows and columns in a tableobject
-
try : report.RegisterData(bankOffer, "frBankOffer", 3); void RegisterData(IEnumerable data, string name, int maxNestingLevel) Registers the business object. Specify the maximum nesting level in the maxNestingLevel parameter. Several nested ob…
-
https://github.com/CoreCompat/CoreCompat google : corecompat.system.drawing centos
-
with notepad++, "FILES MATCH"
-
i give up with your approach [img]style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> if possible: 1. catch user preferences with application code (winforms/wpf/webproject) 2. …
-
...
-
wrote: I guess I am missing something... This code simply does nothing. Do I have to link this to somewhere? Is >_StartReport...< correct? see attached picture wrote: Btw: Is there a book or any material to learn about FastReport?…
-
did you mean setting condition on report template? use script...   public class ReportScript   {     private void _StartReport(object sender, EventArgs e)     {       GroupHeader2.Condition = Report.GetParameterValue("ParameterGr…
-
Philip Black wrote: » the report themselves all work fine but the pop up fonts overlap on high dpi monitors that are set to 125% scaling i solved with creating my own dialog, e.g. printer dialog.
-
just copied my working code. then you have two options: 1.upgrade to the latest version 2.create your own code, export pdf to stream, email with System.Net.Mail library
-
using (FastReport.Report report = new FastReport.Report()) { Â Â Â Â report.Load(""); Â Â Â Â report.RegisterData(dataSet); Â Â Â Â report.Prepare(); Â Â Â Â using (FastReport.Export.Pdf.PDFExport pdf = new FastReport.Export.Pdf.PDFExport()) Â Â Â Â…
-
this topic is about .net core web application [img]style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> .net core technology is very promising, lightweight.[/img] https://www.in…
-
wrote: issues passing parameters to reports while you're working with GUI designer, you can set dummy parameter from script in fastreport.net framework library, fastreport.report class has method 'design' => report.design() you can u…
-
FastReport.Utils.Config.RightToLeft = true;
-
open your frx file with notepad: 'SelectCommand' is linked to 'commandparameter' then 'commandparameter' is linked to 'Parameter' that is fastreport's logic                                        …
-
SELECT ID FROM student WHERE (ID = @student_ID OR @student_ID IS NULL)
-
read FRNetClassReference
-
set: page.UnlimitedWidth = true; // autosize column for (int i = 0; i < 7; i++) { matrix.Columns.AutoSize = true; }
-
your question is not clear, here is the code to create matrix from code             // report object             FastReport.Report report = new FastReport.Report();             // add report page        …
-
it is possible, looks like you're asking the same question. http://www.fast-report.com/en/forum/?p=/discussion/14767 Rules: - one report page = one sheet in a workbook - one report page contains many printed paper sheet - 'StartNewPage' pro…
-
FastReport.Utils.Config.Folder = HostingEnvironment.ApplicationPhysicalPath; in fastreport.mono web application, you must set this folder
-
as long as the same report template, using one report instance should be no problem. look this code below, first run : data came from embedded connection in frx file and on button1_Click : push datatable to the report, it works well public part…
-
i have the same problem, reregistering data doesnt work, therefore, do not use the same instance, dispose the old and create new report. take a look at http://www.fast-report.com/en/forum/?p=/discussion/14767 load report => register data =&…
-
show the code to reflect your problem
-
upgrade your version, or add your custom button and inject to designer form, code to learn the structure : notes: open the text file with excel ( separator = | ) and https://msdn.microsoft.com/en-us/library/dd460756.aspx using System; using Syst…
-
for example, in fastreport demo, 'Repeat Headers', add this script :   public class ReportScript   {     private void _StartReport(object sender, EventArgs e)     {       string frxFile = @"C:\Program Files\FastReports\FastRepor…
-
1. the rule is 'one report page equals one sheet in excel' 2. i have a report template 3. i want to output customer with prefix 'A' 'B' 'C' to excel and must be in separate sheets 4. see attached project string frxFile = @"..\..\..\Repeat Heade…
-
dont know if it's been fixed or not, are you using the latest version? i use https://archive.codeplex.com/?p=npoi for workaround