
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, FastReport.Net does not work with dotmatrix printer specific commands.
-
Hello, Probably your report has different datasource name. Open the .frx file in the text editor and look at the Report/Dictionary/TableDataSource item, its "ReferenceName" property. You should use the same name when you register a data with the …
-
Hello, The problem is that the component's designer in the FastReport.VSDesign.dll can work with original dll only. When you compile FastReport.dll from the source code, you use different assembly key file (.snk), or skip the assembly signing. Th…
-
No, there is no such property. The AutoWidth property of the column makes the smallest possible width to fit all data in the column's cells. You may use the script to fix column width to make the table fit to page width. It can be done in the band's…
-
Hello, Visible is not considered while docking the objects. Either set the Width of such objects to 0, or use the Table object where you can hide the entire column.
-
Hello, Could you send me the .frx and .fpx files to tz@fast-report.com?
-
The export menu is built dynamically. See the Demos\C#\CustomPreview project code how to display such menu for own button.
-
The error in your code is that you don't reset the stream Position to 0. \ Stream theMemStream = new MemoryStream(); theMemStream.Write(Resources.FastReportLanguage, 0, Resources.FastReportLanguage.Length); theMemStream.Position = 0; FastReport.Ut…
-
Hello, Use the Table object: http://www.fast-report.com/documentation/U...tableobject.htm http://www.fast-report.com/documentation/U...ectexample4.htm See the demo report in the Demo.exe: Table/Column DataSource.
-
No, this completely overrides the standard behavior.
-
See the code in the previous post. It's not working now, will be working in the tomorrow's build.
-
Hello, Use this code: Â Â Â Â Â Â ToolbarBase standardToolbar = designerControl1.Plugins.Find("StandardToolbar") as ToolbarBase; Â Â Â Â Â Â standardToolbar.Items["btnStdOpen"].Visible = false; Â Â Â Â Â Â standardToolbar.Items["btnStdSave"].Vi…
-
Hello, See the example project in the Demos\C#\UserFunctions folder. There is no equivalent to Report.OnClickObject, you should handle clicks in the report script. Each report object has Click event. To convert fr3 report file to the new format…
-
Could you send me the complete example project to tz@fast-report.com?
-
Hello, Try this: Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Report report = new Report()) Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Form form = new Form(); Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â DesignerControl designer = new DesignerControl(); Â Â Â Â Â Â Â Â Â Â Â Â Â Â…
-
Could you show me an exception stack trace?
-
Hello, The timeout may be set for the connection object. Switch to the Data window, select the connection, set its CommandTimeout property in the Properties window.
-
Hello, Small, low-resolution images will be printed ugly. I see no way to improve it. If you need better image quality, use higher resolution images. The size of a picture object in a report may be small, set the picture object's SizeMode to scal…
-
Remove '.' symbol from the parameter name and it will work.
-
Hello, You may use dialogue forms in a report: http://www.fast-report.com/documentation/U...alogueforms.htm If you want to print values from your app dialogue form, you may pass value using the report parameters: report.SetParameterValue("t…
-
Hello, FastReport.Net does not support the QR Code now. We plan to add it in one of the next releases.
-
Hello, The designer is for windows.forms only.
-
Use the formatting like this: [FormatFloat('$#,##0.00;($#,##0.00);$0.00',1234.56)]
-
Hello, Please see the Demos\C#\ExportToPDF example.
-
In the WebReport it's a XmlExcelWysiwyg property for XML/Excel2003 export.
-
Hello, Please read this topic on how FastReport exports the report to a table-based format such as Excel: http://www.fast-report.com/documentation/U...ormedreport.htm When exporting to excel, you may turn off the "Wysiwyg" property. In this ca…
-
Hello, You may use a function like this: MyFunc(object dataRow) and call it from the report in this way: MyFunc(Report.GetDataSource("MyTable").CurrentRow) where dataRow may be System.Data.DataRow in case if you use TableDataSource, o…
-
There is no report.Design() method that can accept a Form parameter as an owner form. The "public bool Design(Form mdiParent)" overload accepts MDI form only.
-
Hello, Ok, I will fix the report.Show and report.ShowPrepared methods. Is there any methods to fix?
-
Just set the textobject's horizontal/vertical alignment using the toolbar buttons.