AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Ok, I've added the LoadBusinessObject event to the BusinessObjectDataSource. It will be available in the next build. Here is an example of how to use it (it's based on categories/products business object that is used in the demo): // make categ…
-
Hello Luis, Please confirm if I understood you correctly: - you work with business objects - you register a business object by report.RegisterData(IEnumerable data, string name, BOConverterFlags flags, int maxNestingLevel) method - you need to…
-
Hello, There is no such property in FR.Net.
-
Set DataBand.Filter property in code: Data1.Filter = FilterStatement;
-
Hello, Direct conversion frf -> frx is impossible, there is no such converter. However you can convert frf->fr3, then fr3->frx. See here how to convert frf->fr3: http://www.fast-report.com/en/forum/?p=/discussion/3719 To convert…
-
Hello, You have to write a wrapper for this control. This is an example how standard LabelControl is implemented: Â Â ///
  /// Represents a standard Windows label.   /// Wraps the control.   ///   public class Lab… -
PDF export will be added in the next build. You can test it tomorrow.
-
Hello, Do you have a simple test case for us? We can test it on shared hosting.
-
Hello, We will add PDF export in the next week.
-
Hello, Please post to correct forum, it's not FastReport.Net related question.
-
Hello, Read the programmer's manual, "Working with Windows.Forms/Using the Report component in Visual Studio" chapter.
-
Hello, Are you asking about FastReport.Net? Your previous post was about FR Studio.
-
It will be available tomorrow.
-
You can't set columns for master in master-detail report. Only data bands that have no detail bands can have columns.
-
Hello, There is a bug in FastReport's code, it ignores visibility flag of subreport. I will fix it in the next build.
-
Seems you have old version of FastReport.Net, download new one.
-
Hello Claus, This property belongs to TableDataSource object. When you select the data source in the "Data" window, you will see its properties in the "Properties" window.
-
If you still have problems with rtf, do the following: - create a simple report that demonstrates this error; - in the "Data" window, select the data source; - press "View Data" button on the toolbar. This will load data into the table; - clos…
-
I've tried to make a simple test, it works. I've changed the nwind.xml database which comes with FRNetDemo: ...       1     Davolio     Nancy     {\rtf1 \ansi\ansicpg1252\deff0\deflang1031{\fonttbl{\f0\fnil\fcharset0 Microsoft S…
-
Claus, Could you create a simple test case for me? I've tried to reproduce this error, but with no success.
-
Hello, Connect RichObject to the data using the "DataColumn" property. It should work.
-
Hello Claus, Do this: if (report.Prepare()) report.ShowPrepared(); else { // report was cancelled, close your form }
-
Hello, I will fix this.
-
No, I'm not going to add this. You can use standard combobox control and write all necessary logic using the script.
-
I see; it is needed to do Application.DoEvents() before changing scale mode. I will fix it in the next build.
-
Do it after preview: frReport.Show(); frPreview.ZoomWholePage();
-
Hello, It's a Zoom property, and ZoomIn, ZoomOut, ZoomPageWidth, ZoomWholePage methods of the PreviewControl.
-
Maybe you will find the "data filtering" feature useful. Read about it in the user's manual ("Dialogue forms" chapter).
-
It's very difficult to describe every aspect of creation of own control. The best way is to see how standard controls are implemented (yes, you need FR.Net Pro with sources to do this). Here is a code of the standard LabelControl: Â Â ///Set St.Position to 0 before read from stream.