Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Your code is not connected to object's events. http://fast-report.com/documentation/UserM...enthandlers.htm
  • Hello, You probably forgot to connect BeforePrint event handlers to the bands. You may attach your report here for review.
  • Please send it to tz@fast-report.com
    in Error Comment by AlexTZ May 2010
  • That's true, every total is calculated, no matter if it is actually used in a report object.
  • Since you are using the PrintIfDataSourceEmpty option of a databand, everything is called as expected. Could you make a simple demo for me and send it to tz@fast-report.com? Maybe I misunderstood something...
  • Hello, Some TextObject has an error (most likely you are trying to combine string and numeric types in one expression). Please attach the report file or send it to tz@fast-report.com.
    in Error Comment by AlexTZ May 2010
  • Hello, Modify and Refresh methods can be used in the event handlers like Click, MouseMove, MouseEnter etc. These methods just set the modify/refresh flag. In your case, you need to use the following code to fix changes: //frp.Modify(); //frp…
  • Hello, FastReport cannot handle this. It's up to you to convert a string to decimal correctly. You may create own function in the report code that performs the conversion and checks for empty values.
  • Hello, Please send me the FastReport.Net configuration file. It can be found here: Windows XP: C:\Documents and Settings\user_name\Local Settings\Application Data\FastReport\FastReport.config Windows Vista: C:\Users\user_name\AppData\…
  • Hello, Dynamic assemblies are never unloaded. If you prepare thousands of reports, you will run out of memory (each report assembly is about 50kb). The solution is to create new AppDomain and execute the report in it. When you no longer need t…
  • You don't need to create the third total (TotalIMSS). Just print the sum of two totals in the Text object: TotalRetencionIMSS]+[TotalProvisionesIMSS
    in Total Comment by AlexTZ May 2010
  • Hello, If you want to sum two totals (TotalRetencionIMSS and TotalProvisionesIMSS), just write the following text in the Text object: TotalRetencionIMSS]+[TotalProvisionesIMSS
    in Total Comment by AlexTZ May 2010
  • Hello, No news yet.
    in Export Comment by AlexTZ May 2010
  • Hello, Use the following code to enumerate all TableDataSource objects in a report:       foreach (Base c in FReport.Dictionary.AllObjects)       {         if (c is TableDataSource)         {           Tabl…
  • Hello, Probably you forget to call RefreshLayout method of the designer control:     private void Form1_Load(object sender, EventArgs e)     {       // create a new empty report and attach it to the designer       Report rep…
  • If you use the Table object, you may hide its column via the following code: Column1.Visible = false;
  • Hello, It works, but not for the first row. You also may set the FirstRowStartsNewPage property to true.
    in Page break Comment by AlexTZ May 2010
  • Hello, Here is the VB.Net equivalent: Dim report as SimpleListReport = New SimpleListReport WebReport1.Report = report WebReport1.RegisterDataAsp(report, your_data, "your_data_name")
  • Hello, You may access report objects from your code and change its coordinates:       foreach (Base c in report.AllObjects)       {         if (c is ReportComponentBase && !(c is BandBase))         {     …
  • The answer is short: No.
    in licensing Comment by AlexTZ May 2010
  • Hello, If you are talking about deployment, no, it is not enough. You have to deploy all redistributable dlls: FastReport.dll FastReport.Web.dll FastReport.Bars.dll FastReport.Editor.dll To add toolbox items manually, you need to use FastR…
  • I will add the Engine.ResetLogicalPageNumber() method in the next build.
  • Hello, It is possible with groups only. I will add this option to databands in the further builds.
  • Hello, The first call to Prepare() must be with append=false. I have tried to reproduce the bug, but it works well for my reports. Could you prepare a demo project for me?
  • Hello, Not yet, we're working on it.
  • You should use the following code to get a datasource: report.GetDataSource("aliasname") instead of report.Dictionary.DataSources.FindByAlias("aliasname") Dictionary.DataSources collection contains only datasources registered in your pro…
  • wrote: It didn't work for me. And, I've installed version 1.4. Could you provide more details on what exactly is not working.
  • Hello, wrote: Is there a query designer data dictionary that I can set up? Query designer does not use data dictionary. It works with original table/column names. wrote: Also, when in the query designer, I notice that the table name…
  • Hello, When there is no data in databand, it won't be printed together with all related stuff (header/footer/child...). You have two options to print something in this case: 1) set databand's PrintIfDataSourceEmpty property to true. This will p…
  • The Matrix can do the same things (and even more) that DBCross does. Could you describe your task in more detail?