
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Look at the Demos\C#\UserFunctions sample.
-
Hello, Your dll must be placed in the folder where your .exe file is.
-
Hello, I'm afraid it's not possible.
-
_2010 is for .Net 4.0 only!
-
You can see it here: http://www.fast-report.com/en/download/fas...t-download.html
-
Hello, We have two versions of FastReport.Net: one supports .Net FW 2.0 and higher, another supports .Net FW 4.0 only.
-
Hello, FastReport is probably trying to read its configuration file. You have to disable it with the following code: FastReport.Utils.Config.WebMode = true; You need to execute this code before you access the Report class.
-
Hello, Sorry, there is no such event.
-
Hello, If you are a registered user, you may download it from your control panel on our website. Trial version may be downloaded here: http://www.fast-report.com/en/download/fas...t-download.html
-
Hello, Here is the solution: create new AppDomain and execute the report in it. When you no longer need the report, unload the domain. Creating/unloading domains is rather slow (10x slower than just creating a new instance of report), that's why …
-
Hello, You can embed any image in pdf. It will be embedded as jpg. If you want higher resolution (for printing), check the "Print optimized" option. We have no plans to embed pdf/eps files in a document.
-
I will try to fix this in the next daily build.
-
Hello, FastReport is trying to read its configuration file. You have to disable it with the following code: FastReport.Utils.Config.WebMode = true; You need to execute this code before you access the Report class. When you use the WebReport…
-
What you see in the screen (preview), is what you get in the printout.
-
Hello, You can use PreviewControl to make own preview window. See the following sample project: Demos\C#\CustomPreview. However, it is not recommended way of printing. The text export output is not wysiwyg.
-
Hello, We will fix this in the next daily build.
-
I will add *.tif to the list of file filters in the next build.
-
Hello, PictureObject supports the following image files: *.bmp;*.png;*.jpg;*.jpeg;*.gif;*.tiff;*.ico;*.emf;*.wmf
-
Hello, This way it should work (type this in the Text object): [[MySelectedObject].Name] [MySelectedObject] actually returns MyObject instance, the explanation is here: http://fast-report.com/documentation/UserM...expressions.htm.
-
Hello, Yes, it's correct.
-
Hello, Not the good way. Will not work if the databand has CanGrow/CanShrink options. Why you don't use the example I've posted in this topic?
-
Hello, We don't plan to support vector EMF in our PDF export. You may use "Print optimized" option in the PDF export dialog to get higher-resolution image.
-
Hello, It may work if your printer has built-in national fonts. If it is not, you will get garbage on a printout. Another thing is that txt export is not good enough. You will not get WYSIWYG printout.
-
Hello, You may use either "?" operator or IIf function. animal == "B" ? (5.4*10)/100 : (animal == "C" ? ((2/3)*8.5+7.5)*(10*1.03)/100 : 0) IIf(animal == "B", (5.4*10)/100, IIf(animal == "C", ((2/3)*8.5+7.5)*(10*1.03)/100, 0))
-
Hello, I will add overloaded Res.LoadLocale method in the next daily build.
-
Hello, You have to register it first in your code (using the report.RegisterData method). You can then use it in the "Data|Choose Report Data..." menu.
-
You may write own script function and use it instead of ToDouble standard function. Something like this: private double TryToDouble(string value) {   try   {     return ToDouble(value);   }   catch   {     return 0;   } }
-
Hello, There is no way to do this. Both datasources must be active if you want to use the relation.