
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, It's due to different rendering in winforms (GDI+ DrawString method) and HTML. DrawString method adds a little space before the text, depending on font size used.
-
Hello, It's not possible now.
-
I'm not sure if it is possible. It can be done in the Page.Load event, but the report is not initialized at this time. You can prepare the report in the WebReport.StartReport event, but there is no way to change the WebReport size at this moment.
-
Hello, ICustomTypeDescriptor is fully supported. You probably should register the datasource with maxNestingLevel param set to 2 or more: report.RegisterData(ds, "mydatasource", 2);
-
Hello, Thanks, I will fix this in the next daily build.
-
Hello, There is no way to do this.
-
Hello, It works well on our machine with Win2003. Try to delete the FastReport.Net configuration file. It can be found here: C:\Documents and Settings\user_name\Local Settings\Application Data\FastReport\FastReport.config
-
Did you connected the DataBand to the dataasource? Non-connected band will display the first row only.
-
Hello, This code just overwrites the "Test" parameter each time, so it will contain only the last value. I recommend to register the datasource in a report, instead of using the parameter. report.RegisterData(ds.Tables[0], "MyTable"); In th…
-
This conversion can be done using own function. You can declare it in the report script. Are you trying to pass values to sql "IN" operator (select * from table where field IN (@param1))? It will not work. You have to change the sql text before exe…
-
Hello, It's not a xpo-related problem; you can easily reproduce it in the main demo, "Business Objects" report. The problem is with the report structure. Your report must be of master-detail type if you want to print data from two related busines…
-
Hello, Sorry, I have no complex example right now. You can add or remove chart series by the MSChartObject.AddSeries, DeleteSeries methods. You need to reference the MS Chart dll - System.Windows.Forms.DataVisualization.dll. Once you have adde…
-
Sql parameter can take single value only. You are trying to pass an array of string values, this is not correct.
-
In this case, you need to calculate (somehow) the width of a string and set the text object's Width property. It can be done in the TextObject.BeforePrint event.
-
Hello, You have to set the DataColumn properties: BindableControl = Custom CustomBindableControl = DWTextObject
-
Here is how you can get the selected rows (in the dialogue form's OK button click event):     private void btnOk_Click(object sender, EventArgs e)     {       // filter the datasource       DataSelector1.FilterData();     …
-
Hello, There is no way to set the zoom for the standard preview window. Please use PreviewControl control, it has ZoomWholePage() method.
-
Hello, CheckedListBoxControl is a wrapper over standard winforms CheckedListBox. DataSelector is used for data filtering, you can read about it in the user's manual: http://fast-report.com/documentation/UserM...rhowitworks.htm
-
Hello, Could you make a simple project for me that demonstrates the problem? Please send it to tz@fast-report.com
-
FastReport uses report.FileName property to form an attachment name. If it is empty, the attachment will have "Report" name.
-
You probably did something wrong; I've tested it on a simple report and it works. Run the attached report in the demo.exe.
-
Hello, It can be done in the "Properties" window. - select Chart object; - go to the Properties window; - expand the Chart property; - locate the ChartAreas property and invoke its editor; - locate the Axes property and invoke its editor; -…
-
Hello, Here is C# equivalent that exports the report to pdf and sends it via SMTP: Report report = new Report(); report.Load(...); report.RegisterData(...); report.Prepare(); PDFExport pdfExport = new PDFExport(); EmailExport export = new EmailE…
-
Hello, The problem is that you are using List, which contains TestClass2 instances. Either use List, or ArrayList.
-
Hello, DataOnly is added to the XML(Excel) export, you can try it now.
-
Could you make a simple demo for me and send it to tz@fast-report.com? Your code example is close to what we have in the demo, which is working fine.
-
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
-
Hello, BarcodeObject has HideIfNoData property. It is true by default, so empty barcodes must be skipped.
-
Could you attach your report file here or send it to tz@fast-report.com?
-
Hello, Make a total that sums the same data column as the group total, and print it in the report summary band.