
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
It can [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Here is the code to run the designer in Mdi mode:[/img] Â Â Â Â Â Â using (Office2007DesignerForm designerForm = new O…
-
Hello, We make daily builds, so notifying the customers is not an option
-
It can be done in Visual Studio IDE, "Data|Add New Data Source..." menu. - create new datasource which is bound to an object in your application; - add "BindingSource" component and connect it to your datasource; - put the "Report" component on y…
-
Hello, Here is how I do this in the demo: Â Â Â Â Â Â List list = new List(); Â Â Â Â Â Â Category category = new Category("Beverages", "Soft drinks, coffees, teas, beers"); Â Â Â Â Â Â category.Products.Add(new Product("Chai", 18m)); Â Â Â Â Â…
-
It can be done by putting another Text object (with "-//-" text in it) behind the object with duplicate data. You need to set Duplicates to Hide, and also set non-transparent background for the object with duplicate data.
-
Hello, Instead of using a group, try to use "Duplicates" property of the Text object. Set it to "Hide" or "Clear".
-
Hello, Do this before running a report: TableDataSource ds = report.GetDataSource("MyTable") as TableDataSource; ds.SelectCommand = "your_sql";
-
Hello, To call a function, use "exec" statement instead of "select": exec Functionname not sure about Postgres, but it works in MS SQL.
-
Thanks, fixed. The fix will be available tomorrow.
-
Do you have step-by-step instruction on how to reproduce this?
-
I forgot to attach "DrawItem" event for the plugins list. Will be fixed in the next build.
-
It should be there, if you running Vista.
-
Hello, Please send me your FastReport.Net configuration file for analysis. Under Vista, it is located here C:\Users\user_name\AppData\Local\FastReport\FastReport.config Please send it to tz@fast-report.com. Note: to access this file, you…
-
It was easy, you will have new variables in the next build, today.
-
Hello, Sorry, no solution right now. I will try to add the same system variables asap, and inform you in this topic.
-
Will be fixed in v1.0.232.
-
I'd like to look at .frx and .fpx files, could you send it to tz@fast-report.com?
-
Oh, I see. All event handlers in this dialog were corrupted, I'll fix it in the next build.
-
After adding a plugin, you need to restart FastReport. If you using it in VS IDE, you need to restart it as well.
-
Just checked in Vista, everything is ok on my PC. The main demo is working, I can run the designer. I've tested it as administrator and as user. Try to remove the FastReport.Net configuration file, it is located here: C:\Users\user_name\Local Se…
-
You cannot change paper after the report was built. You have to do this before you run a report.
-
Hello, We have fixed rtf & excel exports. Pdf is still under construction.
-
Hello, The ReportPage class has these properties. You have to set it before you generate the report. ReportPage page = report.Pages[0] as ReportPage; page.PaperWidth = 210; page.PaperHeight = 297; page.Landscape = true; There is no p…
-
Hello, I've modified the demo program in the following way, the dialogs work as expected. Note that I've used the Config.DesignerSettings instead of EnvironmentSettings component - this is the same: Â Â Â Â private void DesignReport() Â Â Â Â {…
-
Hello, Works well on my PC. Please provide more details, what exactly is not working?
-
You have to use [] around each data column. Outer [] needed to insert that expression in the Text object.
-
Hello, 1 - just put the field on that band. However, data columns should be printed on Data bands only, because when printing on other bands, their state may be indeterminated. 2 - see how to do this in the "Script/Print Totals in the Group Head…
-
Hello, Did you set "RightToLeft" property to true for all Text objects in your report? Also take a look at this message, it may helps: http://forums11.itrc.hp.com/service/forums...hreadId=1244232
-
Hello, wrote: I don't want to allow the users to select their own data sources It can be done by setting the Restrictions property of the designer. It has flag DontEditData which disables the "Data" menu and also the "Actions" menu in t…
-
I think pixel is not good measurement unit for the report page, so I've dropped it. Pixels are still used when you working with report dialogue forms.