Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Please use the latest available build, 1.1.53.
  • Hello, You need to install the Microsoft Chart control. You can get it here: http://www.microsoft.com/downloads/details...a8-910ae6ea442c
  • Hello, Do you need to create a connection/datasource that is stored in a report, or to use an application dataset?
  • Hello, Try to use font embedding in the PDF export, it may help.
  • Hello, You may create a report which contains the Connection and all necessary data tables. In your code, you may change the connection string using the DatabaseLogin event. Please read the programmer's manual, the "Working with Windows.Forms/Pas…
  • Sorry, there is no way to do this. You can turn off the human-readable text and use additional Text object to display the text (this will not work with some codes like EAN, though).
  • Hello, Please look at Demos\C#\DataFromDataSet example. Not exactly what you looking for, but very close (just replace the CreateDataSet method with your logic).
  • Hello, It's due to rounding errors. The fix will be available tomorrow.
  • Hello, The Hyperlink.Value is the good place to store some additional information that can be used to display additional (detailed) report on the selected item. Read more about this in the user's manual, "Report creation/Interactive reports" chap…
  • Hello, 1) set subreport's Visible property to false. You can do this in the BeforePrint event handler of the main band which contains a subreport. 2) I've tried to do Config.DesignerSettings.Restrictions.DontEditData = true This hides the "Dat…
  • Hello, Please read the following topics: http://www.fast-report.com/en/forum/index....hl=substitution regarding the web print: it's not possible to print like in windows.forms. Two possible ways are - print via Acrobat (supported now) and pr…
  • I will able to check this in the next weekend. From my point of view, if you remove all FastReport references from your project, and add only FastReport.dll, it should work...
  • Hello, I'm in vacation now and can't check this issue. - do not add (remove) a reference to FastReport.Bars.dll from your project - try to remove a reference to devComponents from your project, and add a reference to FastReport.Bars.dll. Thes…
  • Hello, Silverlight is very actively being developed now. We'll wait when it becomes more stable and more functional. Maybe it will have built-in reporter in SL4 - who knows... At this moment (SL3): - Silverlight has no printing support - yo…
  • Hello, Your code is correct, but you use wrong symbology name (must be Code128 - first letter is capital). See full list of supported names in the class reference (BarcodeObject.SymbologyName property). "2/5 Interleaved" "2/5 Industrial" "2…
  • Yes, FR Studio does this, but there is no option to specify separate resolutions and make a tiff multi-frame. I've fixed the FR.Net export, so it writes out the resolution to output file now. The updated version will be available in 6 hours.
  • Sorry, it's a rather complex task to make hyperlinks working. We need to make changes in the html export, and completely change the architecture of webreport. It's not possible right now.
  • Hello, WebReport control does not support hyperlinks now. It will be added in v1.3 - no timeframe yet.
  • Yes, exactly. In your case you have to use Init().
  • Hi Bryan, Yes, I don't touch the resolution, but scale the image and maintain aspect ratio instead. I will try to modify my code to work with resolution as well.
  • It's because you did not set the group condition for the group header band. Once you set it to say [Employees.ID] the report will be ok.
  • Sorry, I can't reproduce the error with DataFromDataSet, could you provide step-by-step instructions?
  • I checked it with groups, it works well. If you need to use an application dataset to design a report, you may: - Use technique described in the programmer's manual (Working with Windows.Forms/Using the Report component in Visual Studio). You ne…
  • Hello, The solution is correct. But in order to use it, you need to have a Data band named "Data1" in your report.
  • Yes, you will need to download it and reinstall. The new version will be available in 4 hours.
  • Hello, If I understood you correctly, you want to have master data band and display in it some values from different datasources. These datasources are connected to the master datasource via SQL parameters. You need to call Init() method of th…
  • Hello, I will add the SymbologyName property in the next daily build. You will be able to do the following: barcode.SymbologyName = "PDF417"; (barcode.Barcode as BarcodePDF417).CompactionMode = CompactionMode.Text;
  • Hello, You need to create a master-master report where different databands are on the same level and don't connected to each other. See user's manual, "Report creation/Master-master report" chapter.
  • Hello, These events are global, you need to attach them only once. Once you did this, the standard open/save dialogs will be replaced with your own. I don't know what you mean by importing one report to another. Please describe in details.
  • Hello, Use another event, AfterData, instead of BeforePrint. In the BeforePrint event, you cannot analyze the Checked property because the object is not filled with data yet.