
ipong
ipong
About
- Username
- ipong
- Joined
- Visits
- 176
- Last Active
- Roles
- Members
Comments
-
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();
-
yes, your problem is how to define datasource, try this: report1.Load("Untitled.frx"); report1.SetParameterValue("timePara", TimeLabel.Text); report1.SetParameterValue("DatePara", DateLabel.Text); …
-
your code seems right to me, please attach untitled.frx
-
show the code...
-
maybe like this.... https://forum.fast-report.com/en/uploads/974/IVX9CCI7NXDS.7z
-
>>TextBox1.DataColumn = ((String)Report.GetColumnValue("RSRList.SRI")); TextBox1.DataColumn = "Exercise.Region"; =>tablename.fieldname >>TextBox1.FilterOperation = "NotContains" ; // I know this do…
-
FastReport.Export.Email.MAPI.SendMail(IntPtr handle, string[] files, string mailSubject, string mailBody, string[] recipentName, string[] recipientAddress) Try this in your form: IntPtr handle = this.Handle; It will return the handle of the…
-
1. use fully typed : namespace.class or 2. alias, https://www.dotnetperls.com/using-alias
-
try use chr() macro, for example: EMPLOYE[Chr(8364)]S
-
try save as frx file as c# class from designer, look how fastreport parsing your formula into code
-
https://www.fast-report.com/en/forum/index....custom+function
-
using (var report = new FastReport.Report()) { Â Â Â Â using (var designer = new FastReport.Design.StandardDesigner.DesignerForm(false)) Â Â Â Â { Â Â Â Â Â Â Â Â designer.ShowInTaskbar = true; Â Â Â Â Â Â Â Â designer.Designer.Report = report; Â Â…
-
FastReport.ReportPage Page1 = new FastReport.ReportPage(); Page1.Name = "Page1"; Page1.PaperWidth = 215.9f;Â Â Â Â // millimeter => 21.59 cm Page1.PaperHeight = 139.7f;Â Â Â Â // millimeter => 13.97 cm Page1.LeftMargin = 20f;Â Â Â Â // millime…
-
wrote: The reports I am trying to combine have different datasets with very different values in each, so I don't think they could be combined into one dataset, at least not the way you suggest in the linked page. you must follow the instruc…
-
correct, take a look at fr.net demo       // create simple dataset with one table       FDataSet = new DataSet();       DataTable table = new DataTable();       table.TableName = "Employees";       FDataSet.Tables.Ad…
-
you have to match between 1. in data source : TableName.FieldName, and 2. in textobject : [Employees.ID] => tablename = Employees and fieldname = ID
-
push dataset from .net winforms/wpf => report.RegisterData(dataSet); and the frx file will automatically add : Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â fr.net internally process : 1. TableDataSource => push datatable/data…