AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
It's not possible via chart object editor. You can do it in the "Properties" window: - select ChartObject; - in the Properties window, expand the "Chart" property; - invoke the "ChartAreas" property editor; - locate the "Axes" property and inv…
-
Hello, I will add this to our to-do list.
-
Try to disable standard progress window by setting the FastReport.Utils.Config.ReportSettings.ShowProgress to false. Maybe it will help. If it will not, I need an example to fix the problem.
-
Hello, Do you have an example that I can run and test?
-
Hello, I've already added MSChart into FastReport.dll code, so it's a standard FastReport object now. No need to plug-in it anymore, and no need to use other charting solutions.
-
I think FastReport can run without these two dlls: - System.Web is used only with WebReport component; it should work if you use only Report component. - System.Design is used for component designers such as WebReport and Report.
-
Hello, Select the cell and set its CanBreak option to false (via Properties window).
-
Hello, Set the FastReport.Utils.Config.WebMode property to true somewhere in the application startup code. This will disable loading/saving a config file.
-
In v1.0.184 you will able to use the ReportLoaded event to do this. This event may be attached either to the EnvironmentSettings.DesignerSettings, or to its non-visual equivalent, Config.DesignerSettings. Here is an example: ... Config.DesignerSet…
-
I've changed the RegisterData behavior. All you need is to call rep.RegisterData(dt, "VendorGuideSearch"); If there was a datasource with "VendorGuideSearch" alias, and if it belongs to a connection, it will be replaced by the new datatable. N…
-
Hello, There is no way to add user functions in the "Data" window. I'm working in this direction, such ability will be added soon.
-
Hello, I don't have any experience with this. However, this point from Microsoft means that FastReport.Net is not compatible with client profile: The following list of APIs are not supported on the Client Profile (even though they exist and are…
-
Sorry, I forgot about this. Here is correct code that should work: // rename old datasource rep.GetDataSource("VendorGuideSearch").Name = "VendorGuideSearchOld"; // register new one, use actual name rep.RegisterData(dt, "VendorGuideSearch");…
-
To do this, register a new data and fix the references to old one. There is no universal way to do this; typically you need to fix the databand's DataSource: // use new name! rep.RegisterData(dt, "VendorGuideSearchNew"); (rep.FindObject("Data1"…
-
Hello, Here is an example how you can load an image from a file: Â Â Â Â private void Picture1_BeforePrint(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â Picture1.Image = new Bitmap(@"c:\test.png"); Â Â Â Â } using another overloads of …
-
Ok, I see the problem. It seems I have to include chart into the main library, FastReport.dll. I will try to do it today, so you can test it in the tomorrow's build.
-
You have to add References to FastReport.MSChart.dll and System.Windows.Forms.DataVisualization.dll. In order to initialize plugin, run this code: new FastReport.MSChart.AssemblyInitializer();
-
Here is an information from user's manual: To work with Microsoft Chart, FastReport uses the FastReport.MSChart.dll plugin. You need to connect this plugin to FastReport environment. To do this: ?· put the FastReport.MSChart.dll file in the …
-
I will add the option to display all data on the second page. I will let you know when it will be ready.
-
I mean your original problem was with the incorrect break of the Matrix object. I've fixed it, download the new version and try it.
-
See the User's manual, "Dialogue forms/Referencing to a control from code": In fact, the FastReport's control is just a wrapper for the standard .Net control. It wraps many, but not all, properties of the standard control. If you need some prop…
-
I've fixed something related to Matrix object, try it now.
-
Hello, Please send the prepared report file (.fpx, save from preview) to tz@fast-report.com.
-
FastReport.Net is not a web service - it's an ASP.NET control. You may create ASP.NET page, place report control on it and add necessary logic (load report, connect to data etc). Then, you may open this page in browser. Using non-web components such…
-
Sorry, but your request is very uncommon. FR.Net designer cannot do that now.
-
You can enable/disable some designer operations by using the designer.Restrictions property. When you disable the operation, its button and/or menu item will hide.
-
Toolbars are internal classes, so it's impossible. What you need to do with toolbars?
-
You need to load the report first, then design it. Designer cannot know if you change your report from outside.
-
I'm lead developer. If you want to clarify something, ask.
-
Hello, 1) FastReport.Net is a reporting tool for Windows Forms and ASP.NET. 2) Here is an information from Programmer's manual: You may redistribute the following files along with your application: ?· FastReport.dll - the main FastReport.N…