
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
You may use script code to fix the object at its position. Use band's AfterLayout event to do this: Â Â Â Â private void Data1_AfterLayout(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â Text2.Left -= Data1.Left; Â Â Â Â }
-
Hello, The whole band with all its objects is moved to the right, you cannot change this behavior.
-
To do this, use technique described in the user's manual, in the "Report creation/Master-master report" chapter.
-
The Child band can be configured to fill empty space on a page. To do this, add the Child band to the group footer band and set its "Fill Unused Space" option (in the context menu).
-
I've tried to reproduce it, but it works well for me. Please send me your .frx/.fpx files.
-
Hello, look at Demo.exe source: UIStyle style = (UIStyle)comboBox1.SelectedIndex; Config.UIStyle = style;
-
Hello, Use "Click" event in a report script, not in your program. I will try to make it working in the next versions.
-
Hello, Please try latest version, we have fixed something in pdf.
-
It seems that MSChart ignores the format if you use patterns like #VALX, #VALY. Try to specify the format in the pattern, like #VALX{C}.
-
Hello, Thanks, fixed it. The fixed version will be available in this midnight.
-
Hello, we are aware of this problem and fixing it now. I will let you know when we finish.
-
Hello, Try with the latest version, it should work now.
-
It's the TableDataSource. However, if you need just to access the RowCount, you don't have to cast: if (Report.GetDataSource("BilltoAccounts").RowCount == 0) ...
-
It seems to me that instead of CR+LF your field contains CR symbol only, which is not recognized by .Net DrawString method.
-
The difference is GDI+ in FastReport.Net and GDI in FastReport Studio. They use different text output and measurement mechanisms, so the result is different.
-
Sorry, there is no way now to call the standard report wizard from your code. It has no sort/aggregates ability as well - it needs to be done in the designer.
-
Hello, FastReport.Net has it all; you can include the report designer in your application.
-
Hello, Here is an example of how it can be done in master-detail report. I've changed it to master-detail-detail; the last detail band has a BeforePrint event handler (see the script).
-
TAB symbol was not supported; we have fixed it today. Please wait for the next daily build.
-
Hello, Tool windows behavior was changed some time ago (when we move to another docking library). I need to correct something to make it work. I'll let you know when I done.
-
FastReport.config file is per-user by default. The better way is to include FastReport.Postgres.dll in your application, as described in the "readme.txt" file that comes with FastReport.Postgres: wrote: 3) register the dll programmatically - …
-
wrote: What about the FastReport.Postgres.dll file, do I have to destrebuite it as well. Sure. You need to put this file together with FastReport.dll.
-
Do you need to show a PDF file in a report? Sorry, it's impossible, we not going to implement that.
-
Hello, We are interested in UI localization. I'll drop you an email.
-
You may use built-in abilities of FastReport to sort & filter the data. We don't plan to change the architecture. You may save your report as a class. This is described in the programmer's manual, "Working with Windows.Forms/Storing and loading…
-
It seems to me that I didn't understood your initial question... If you have some data source, why just not register it in FastReport, and create regular, data-bound reports?
-
You may put several "Text" objects on a report. To get a reference to an object, use the FindObject method of the Report object: TextObject text1 = report1.FindObject("Text1") as TextObject; text1.Text = "my text";
-
Do you have a test project that demonstrates this bug? Please send it to tz@fast-report.com
-
1) The "Style" property was never "inherited", you have to assign styles for each component individually. 2) Check that both master and detail datsources are enabled in the "Choose Report data..." dialog. In this case the datarelation is stored in …