Default Avatar

Hans

Hans

About

Username
Hans
Joined
Visits
2
Last Active
Roles
Members

Comments

  • With the code below it is possible to use a basereport with parameters and totals. After loading the report by code, the basereport is resetted and all double parameters and totals are removed. Then it works fine. using (Designer frDesigner = ne…
  • Sorry, found it. I had to add a Detail Band. Ignore my post please.
  • AlexTZ wrote: » Hello, You have several options: 1) add the filter criteria to the detail sql too. 2) add parameter to the detail sql and bind the parameter's value to the master: SELECT CategoryID, ProductID, ProductName, UnitPrice FROM P…
  • IngoFR wrote: » will the FastReport.Net 2013 PDF Export create pdf files readable for Apple devices? currently FR generates pdf files that cannot be opened on any Apple OS... In our C# program we added this line: pdfExportEmail.Embeddin…
  • Great !! Thanks a lot.
  • Yes, that is right. The user want a number of previews. Every preview takes a few seconds. When there are for example 3 previews ready, so 3 tabs, the users clicks tab 1 to check if the preview is ok. Then a new tab is coming up, tab 4, that stol…
  • The problem is solved by using a previewcontrol and calling the function AddTab() for each report.
  • Alex solved this problem, the Problem was a Papersource 15 in my report, after changing it into 7 it works like a charm.
  • Fixed in 1.6.64.0 Hans wrote: » When I add the PreviewControl to a Visual Studio 2008 WinForm and run the project, I am not able to get a working preview. I click the Open button, the OpenFile dialog appears, I select a FPX file. Then nothing h…
  • I am busy with the same thing. My solution will be something like (basic steps): - create a small app that reads the frx and reads all the texts (text object without [] or with double quotes surrounded) and export that text with the text object na…
  • Here another worried customer. This forum seems to be nearly dead. Where is Alex? He responded within one or two days with good information. I like to know what is happening with FR...
  • Thanks OlegK, I am able to add the plugin now. However, only empty fields are shown. (fields without a Text). The plugin is not very usefull in that way. But the source included is a nice example how to create a plugin. Thanks Hans
  • Hello Alex, That does most of the job. Only when a field is growing to the next line the space between the first line and the second line is to large. It would be great to have a setting to minimize the empty space between two rows. Bye Hans
    in Row Heigth Comment by Hans April 2010
  • Problem seems to be in a printer that is used for ActiveFax. When I print the reports to a normal printer focus is not stolen. Thanks for your help.
  • Hi Alex I found a solution for my problem. When I change the attribuut msdata:UseCurrentLocale from "true" into "false" in the XML file then it works. Thanks Hans
  • Option 1 works but gives me an empty page first. Option two works fine. Only I do not understand why I should do it in this way. Why the original report did not work.
  • The XSD file was missing in the zip. In included in this message. If this not work, what error did you get?
  • Hi Alex, I have created some test reports with data in the Group footer also, but a real live report does not shown the Table fields in the Group footer. I included a zip with a Sample.frx and a XML and XSD file with an example. The Bold field…
  • I used this expression at the GroupHeader Band Condition. Here this results in an error CS1525 followed by CS1002. Is this caused because we using an expression with a "IIf"in a group header? BTW, we can use expression like [Table.col1] + [Table…
  • Thanks Alex !! AlexTZ wrote: » Hello, It's the name of the report (Report.ReportInfo.Name if it is not empty, you can set it in the report options dialog), or the file name (Report.FileName).
  • I play with it but it only Loads a Dictionary over the existing one. Should it not Add the new Dictionary to the already existing Dictionary and remove duplicate datasource columns ? When Merge works as expected you can create a lot of smaller…
  • We need localization too. In Crystal Reports we do the translations by our program. With FastReport that will be a workaround too. I think a lot of users would appriciate to have a Localization possibility in the report. AlexTZ wrote: » The…
  • Found another solution. I found the Load and Save Styles. That will do the job fine !! AlexTZ wrote: » Hello, Unfortunately the report inheritance works with report objects only. There are many limitations in inheritance mode, you can read…
  • I know it is not possible now. But if users want some new features like this. Where do we have to send that information? AlexTZ wrote: » Hello, Unfortunately the report inheritance works with report objects only. There are many limitations i…
  • I have created a Case by Sybase to give us an option. Hope they will give us a good solution. Thanks for your help. AlexTZ wrote: » I've tried to google and found your post: http://groups.google.com/group/sybase.publ...754fa7bdef15f7# I…
  • 2. Installed 1.3.33. When I add a table I see that the username (DBA) is added. However, when I add a SQL query there is nothing changed. Still, only the column name in the allias. We need the _ in the allias. Ths user id prefix (DBA) is not…
  • 1. That example helps me. I changed the SQL statement from "SELECT * FROM Pakcing WHERE Orderid = [Orderid]" into "SELECT * FROM Packing WHERE ORderid = ?" Thanks !! 2. That is what I mean, also called Fully Qualified column names. We have to find…
  • Hello, 1. I tried to put a WHERE in the subreport as follows: - I removed the relation - changed the SQL statement of the subreport in "SELECT * FROM Packing WHERE orderid = [OrderID]" - add a parameter OrderID type integer, default value 1, e…