Default Avatar

AlexTZ

AlexTZ

About

Username
AlexTZ
Joined
Visits
0
Last Active
Roles
FR Team

Comments

  • Hello, Do this: // the first report report1.Load(...); report1.Prepare(); // the second report report1.Load(...); report1.Prepare(true); // the third report report1.Load(...); report1.Prepare(true); report1.ShowPrepared();
  • Sorry, I was not able to upload my changes before the start of build process. So it will be available in the 1.1.51 version.
  • Could you send me FastReport 3 report file (.fr3)? tz@fast-report.com
  • Hello Bryan, I've added separate horizontal and vertical resolutions. Changes will be available in the next daily build.
  • Hello, Please tell me how it was designed in FR3. I suppose you have used the main SQL to connect it to the master data band, and four SQL to show values on the data band?
  • I will add the multi-frame TIFF export in the next dailty build.
  • Hello, FR.Net exports PDF as unicode using CID-fonts. Probably your fax does not support this mode. Sorry, we cannot change our PDF export. Regarding TIFF export: you may set the "Separate file for each page" flag - this will produce several .ti…
  • Yes, having the source code you may customize the preview window in any way.
  • Sorry, you don't have access to the opened tabs.
  • The title is a combination of hyperlink value(s). Please see the detailed explanation in the user's manual: "Report creation/Interactive reports/Examples/Example 2. Building a detailed report" and "Report creation/Reports with charts/Intera…
  • I've added CustomOpenSaveDialogs demo (under Demos\C# folder). And fixed some errors in the fastreport.dll [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> The fixed version …
  • I will prepare a new demo under Demos\C# folder. I think it will be useful to others who want to store their reports in a database.
  • As you can see what I use is not a file name - it's a kind of ID. Yes, finally it becomes a file name, but this is just to demonstrate that the technique is working well.
  • 14 + "" would generate a compiler error [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Here is what I do and it works well for me:[/img]     void DesignerSettings_Cust…
  • It will be available in the next daily build: /// Config.DesignerSettings.CustomPreviewReport += new EventHandler(MyPreviewHandler); /// /// private void MyPreviewHandler(object sender, EventArgs e) /// { /// Report report = sender as Repor…
  • No, it does [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> - In the CustomOpenDialog event you return a "filename" in the e.FileName parameter. It may be either a file nam…
  • Hello, No such event now. I'll try to add it in the next release.
  • Hello, Try to change your main SQL so it will contain all master and detail columns - "KIND", "LAST YEAR", "MONEY-1", "MONEY-2", "MONEY-3". In this case you may use one data band with five Text objects on it.
  • If we find suitable solution, I will let you know here.
  • Hello, Unfortunately, EnvironmentSettings object is not working in VB.NET. Event handlers connected to this object will never fire. You need to use Config.DesignerSettings events instead, as indicated in the previous post sample. Here is equivale…
  • The provider displays tables available to the current user. See this method in the OracleDataConnection.cs:   public class OracleDataConnection : DataConnectionBase   {     private void GetDBObjectNames(string name, string columnName, List…
  • The reason is simple: your opendialog event handler is empty. You don't provide a report name in this event. Since the name is not provided (empty), the LoadBaseReport event is never gets called - because there is nothing to load. Modify the code…
  • I need a simple demo that I can compile and debug. For example, if I modify the Demo.exe source in the following way:     private void DesignReport()     {       FReport.LoadBaseReport += new CustomLoadEventHandler(FReport_LoadBaseR…
  • It's not possible in the current version to add own button in the preview form, or attach own event to the existing button.
  • May be you need the GROUP report? In this case you will need one databand and a group header/footer bands. Read about it in the "Report creation/Groups and totals" chapter in the user's manual.
  • wrote: This is where I add the event, but the event is never called when I press newInheritedReport. I've tried to do the same, and the event is called. Could you make a simple demo for me?
  • Try to use the LoadBaseReport event in your CustomLoadReport event handler: // wire up event e.Report.LoadBaseReport += new CustomLoadEventHandler(CurrentReport_LoadBaseReport); // load the main report e.Report.Load(...); // unwire event …
  • Hello, Yes, see the CommandTimeout property of the Connection object (select the connection object in the Data window, then switch to the Properties window).
  • If you want totals, you have to use two data bands. You may make the detail data band empty and set its height to 0.
  • Under medium trust, FR cannot export to PDF and print (using PDF), because this process involves many winAPI calls which is not allowed in restricted environment. We plan to add another print option - print a html using webbrowser.