
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, The Text object has "AutoWidth" property that allows to display the longest line in a text without wordwrap. Is this what you need?
-
Hello, This bug will be fixed in the next daily build (tomorrow).
-
Hello, Set data1.PrintIfDetailEmpty = true.
-
Hello, The first option is the best solution. There will be no problem with group report because it uses one table only. Two or more tables needed if you want to make master-detail(-subdetail...) report.
-
Ok, we will add the "data only" option to some export filters. I will let you know when the new version will be available.
-
We really need System.Design.dll. We can't use property editors without this.
-
Sorry, I'm not familiar with Crystal report.
-
Hello, Client profile is not supported. http://www.fast-report.com/en/forum/?p=/discussion/5441
-
Hello, It is possible. Â Â Â Â private void ReportTitle1_BeforePrint(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â Total totalProducts = Report.Dictionary.Totals.FindByName("TotalProducts"); Â Â Â Â Â Â totalProducts.TotalType = TotalType.S…
-
Hello, DateDiff function returns TimeSpan value: http://fast-report.com/documentation/UserM...uncdatediff.htm Write the following to display the number of days: [DateDiff([Date],[PackageList1.PackageDateIn]).Days]
-
1) You may use CSV export, it has "data only" option. 2) We build a new version almost everyday. Change log is available on the product page: http://www.fast-report.com/en/versions/ind...hp?changes=3928 Note that not all changes are logged. To…
-
It's hard or even impossible. Consider using run-time designer to create a report on a dynamic data.
-
To show a subset, you need to create a query. Please read the manual: http://fast-report.com/documentation/UserM...atesqlquery.htm What to do if you use dynamically generated data: 1) try to use ObjectDataSource component, bind it to your data…
-
There are two ways to print data in a webreport. 1) You have datasource in your program. It may be SqlDataSource, AccessDataSource, ObjectDataSource etc. To use it in a report, you register the datasource. This way is described in the programmer…
-
It's a problem with demo code only. It will work in the next build.
-
Fixed; the fix will be available in the next daily build (tomorrow).
-
I know this is a very important thing for RTL users; but it's very hard to rewrite our code to support this. I will add this in our todo, but can't tell you when it will be ready.
-
In your case, just set the Dock property to None. I will try to change this behavior in one of the next builds.
-
Actually you don't need to merge dictionaries. Each report contains its own dictionary stored in a report file. All you need is to register all datasources (using report.RegisterData method) and select datasources used in a report (in the Data|Choos…
-
Hello, We didn't update the webdemo a long time ago, there is an error with Business Objects in it. I will update the demo in the next build.
-
Hello, I will let you know when we fix this.
-
Hello, Please describe step-by-step what are you doing; how to reproduce an error?
-
Hello, The dtOrgsummary.I/C column has decimal data type (in .xml data file). In a report, the DataType property of the column is set to Int32 which is not correct. You should set it to Decimal and use the following form: [SecondsToHHmmss(ToInt3…
-
It's a very complex task, we have no plans to implement it in near future.
-
Hello, While docked, report components can't change its size. So CanGrow/CanShrink settings will be ignored.
-
There is no such way. You need several report files, one report = one language.
-
Hello, IIf function calculates both parameters, truePart and falsePart, independent of condition, then returns truePart or falsePart. It's a standard behavior of any .Net function. Please read the user's manual: http://fast-report.com/docume…
-
Please clarify: are you using DevComponents in your project? FastReport contains its own copy of DevComponents (FastReport.Bars.dll) with the same names/namespaces, so you will not be able to use both libraries at the same time (original DevComponen…
-
Try Dim customButton As DevComponents.DotNetBar.ButtonItem = New DevComponents.DotNetBar.ButtonItem
-
Here is VB.Net equivalent: Imports DevComponents.DotNetBar Dim customButton As ButtonItem = New ButtonItem customButton.Text = "my button" AddHandler customButton.Click, AddressOf customButton_Click previewControl1.ToolBar.Items.Add(customB…