Default Avatar

Xavi

Xavi

About

Username
Xavi
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Bu then how can I add my custom function to calculate the week number? I have been reading the manual and I cannot find the WeekNumberISO8601 property or how to custom attributes.
  • As suggestion for a future version, I would ask you to be able to enter directly the expression, in the properties option, not indirectly calling a function that then you need to call.
  • Is Fast-Report project dead? What about the technical support? It is very frustatring. I sent how to replicate the bug in a new and easy project and I do not have a solution.
  • I have been investigating the issue. The problem seems to be in tge frxclass.pas unit, in the finalization section. FParentForm.Free raises an exception, when I delete it, the everything works fine. In any case, it is not the solution. Can yo…
  • Please can you provide a basic guide? I am creating a dll with the pre-processing functions. Now, I have several options, I have thought something like: var dataset=Distribution.CreateHistogram((Report.GetDataSource("ds") as ViewDataSource).…
    in Histogram Comment by Xavi April 2010
  • Thank you. One question more, how can I know the free space to the bottom of page to decide to insert a break in the table?
  • Using your demo Tables / Column Data Source, just add a Page Header and insert a text box. You will see that the first page is different. I would like to show a header in all pages, and after this header, the table. This thread has converged to th…
  • I know, but I was thinking in a sub report or another trick, I would like to know your advice. What I need is to print a header in each page (title, license name, date, # page, ...). Then I would like to show the table across the pages, but as I …
    in Split a table Comment by Xavi March 2010
  • Is there a way to avoid the use of the ReportTitleBand or its child? I use the Page Header Band to put the report title, license, page, etc. and then, using the Table Object in ReportTitleBand, it overwrites my Page Header band. I would need to pr…
  • Partially solved. I used Page Header band, and it cuts the table. If I move the table to a Report Title band, then it works. The problem is that I need to use a Page Header band, or a child of Page Header, but I cannot use the Report Title band. …
    in Split a table Comment by Xavi March 2010
  • Let me explain the report, maybe you can guide me because I cannot see the way to do the rows dynamically. The report is dynamic in the X axis, each column is a period of time (a record of the dataset) and I fill the columns from the ManualBuild ev…
    in Split a table Comment by Xavi March 2010
  • You are right, I selected the row selecting all cells of the row (moving from left to right). Now I see that I need to use the "small black arrow". Thanks
  • Thank you. By the way, is there a manual about the classes, methods, etc.?
  • No, I do not want the text, I would like to change the expression from the source. If I put [x + 1] from the designer, it works fine, but if it do the same from the script, I get an error.
  • Ok, I see, it works fine, thank you. I did not tried because before I tried to modify the Text property and it returned error. It is off-topic, but do you know why I get error when I change the Text property. For example, in the multiplication de…
  • Is there a way to declare them and specify that they are not public (do not appears in the designer panel)? In many scenarios, some parameters should not be displayed in the panel, and also, the should be "read-only". For example: LicenseName,…
  • Sorry, maybe "internal" term has induced to confusion. I did not mean the internal or private C# operator. I meant how to build a system where I can assign variable values dynamically from the application C# source (not the report source), and th…
  • Thank you, it works fine. Can I hide it from the editor panel? I do not want that the user see the "internal" parameters. They are used only by my custom functions. Users do not need to see, delete or modify these values. Let me explain, when I l…
  • Sorry for insisting, but it is important for planning our release dates. I understand that you do not have a tentative date, but are we talking about 3-5 months, or more? If it is more, is there a way or trick or creating a custom object to insert …
  • Do you have a tentative date to release the 1.3 version? We also need the link feature for web pages, we need the hyperlinks to offer the drill-down features, it is a basic for us. Thank you
  • I have tried your response, but it seems not working. If I click View Data, in the Data panel, I can check that the field is blank. I am using: [IIf([ds.EntryDate] is DBNull || [ds.EntryDate] == null, "", [ds.EntryDate])] and I FR prints ou…
  • But it is not consistent with the aggregate functions of any database, including Ansi/ISO standards. "Sum" function must ignore nulls, precisely it is one of the good features of working with null values. I do not use "Convert null values" in any …
  • I have sent it to you via email.
  • I mean that in Winforms and pdf, the two boxes are perfectly aligned by the left. Using web render, the first one appears in the middle of the screen, the second one appears in the expected place. There is a difference of more than 5 cm. Maybe…
  • I have read your post but maybe somethings have changed. According to http://msdn.microsoft.com/en-us/library/mi...8VS.100%29.aspx Microsoft.VisualBasic.VBCodeProvider and Microsoft.CSharp.CSharpCodeProvider seems to be supported by Net 4 Client.…
  • This solution works fine but it is very dependent of your updates. I would ask you as suggestion, if it is possible, to add something like IFormatProvider / ICustomFormatter in the FR Net project. It would be nice that we can register a formater fr…
  • I think that for now, a simple event would be enough. It would give more flexibility to the developer. In my case, I use embedded functions in the SQL, for example SELECT * FROM Customers WHERE %%GetValue('Filter')%% Thank you
  • I would ask you as suggestion to add an event in FR, for example OnBeforeOpen, where you can change the SQL string in runtime just before FR executes it. The current solution, iterating all report objects, works fine, but it is not efficient, spe…