
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
The problem solved, please wait for the 1.1.30 build. It will be available in this midnight.
-
Hello, 1) if you want to work with VistaDB in VS design-time, you need to add the connector to the designer plugins, as described in the readme.txt: wrote: 1) register using the FastReport IDE - open the report designer; - go "View|Option…
-
I've tried to download the demo now, it is ok for me. Try to clear your browser's cache.
-
Hello, I will try to fix this in the next daily build.
-
Hello, Please check the Demos\C#\UserFunctions example.
-
Hello, At this moment it's not possible. I'll add this feature in the next daily build and let you know how to use it.
-
Thanks, we will check the demo and let you know.
-
Your solution should be ok, unless you use SQL with parameters. In this case you cannot just replace the connection object. In fact, it will be almost impossible to do: - different connections use different parameter types. OleDbType, SqlDbType, My…
-
I will try to use more generic [] symbols as quotation chars for OleDB. The fixed version (1.1.29) will be available tomorrow.
-
Hello, I've fixed the bug, wait for the 1.1.29 version.
-
Hello, Could you send me a demo which demonstrates the error? tz@fast-report.com
-
wrote: PS: If I purchase the WinForms/WebForms version of FR.NET, will I be able to upgrade to Professional for the price difference later on? Sure. You can start with WinForms and upgrade if necessary.
-
Strange, the 1.1.25 version (which is available for download now) must have necessary changes.
-
Problem solved (I hope [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> The new version will be available in three hours. Another improvement I made to filter some service pr…
-
Many thanks! I will inspect the test project and let you know when I fix the problem.
-
No problem, Marco [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> It will help me to improve FastReport a lot. Seems that the problem is that FR uses "live" object at the f…
-
Hello, Please use full path to the report file, like @d:\MyProgram\myreport.frx. If it won't help, please send me a simple demo with this error to tz@fast-report.com.
-
Hi Marco, Could you show me the structure of your classes? I'm interested in "Language" and "Addresses" classes.
-
Hello, wrote: Parameter1, type String, Expression: [Parameter1] defined in Data|Parameter You shouldn't set the Expression here - you will get infinite loop when trying to calculate the parameter value. wrote: When I execute the …
-
Just embed an image into the report. Use the first tab (Picture/Load) in the picture editor. The difference between "File name" and "Hyperlink" is that in the latter case FastReport will download an image from a specified URL.
-
The problem may be that FR uses type of object instead of object itself: src.DataSource = your_business_object.GetType(); It works in most cases, but in your case it may fail. I will fix this in the next daily build (it will be ready in three …
-
Marco, I'm not familiar with DevExpress Xpo. Here is how you can check your business objects: Â Â Â Â Â Â string propNames = ""; Â Â Â Â Â Â using (BindingSource src = new BindingSource()) Â Â Â Â Â Â { Â Â Â Â Â Â Â Â src.DataSource = FBusines…
-
Hello, Please check this post: http://www.fast-report.com/en/forum/?p=/discussion/5695 BO fields are not supported, you should use properties instead.
-
Since RefreshTable deletes obsolete columns and creates new ones, you may use it instead of InitSchema.
-
Hello, You can do it in the designer - just go File|Printer Setup... menu item and do the same. These settings will be saved in a report file. Another way to do this is to set report.PrintSettings properties in your code.
-
You may use the report.LoadBaseReport event to load a base report from any source (for example, from a stream).
-
Hello, I've added PictureObject.Angle property. Possible values for this property are 0, 90, 180, 270.
-
Hello, If you want to share the same report header/footer for many reports, try to use report inheritance. It is described in the user's manual, "Report creation/Report inheritance".
-
Please send me your report file (.frx) and prepared report (.fpx, save from preview) to tz@fast-report.com.
-
Hello, It's not so simple to create own report object. At least, you have to override the following methods of the new object: Â Â Â Â public override void Assign(Base source) Â Â Â Â { Â Â Â Â Â Â base.Assign(source); Â Â Â Â Â Â Â Â Â Â Â Â …