
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Choose another format, "Number".
-
Right-click the Text object which displays the total cost, and select "Format...". Choose appropriate format (Currency).
-
Hello, Put this text in your Text object (where you want to print the total): [SecondsToHHmmss([TotalDuration])] where "TotalDuration" is the name of your total.
-
Hello, You may export your report that contain barcodes, into the image file (bmp, png, ...). Is this what you want?
-
Sorry, we don't have plans to convert emf to pdf vector objects. It's a quite complex task.
-
Hello, To add a business object, you have to use the report.RegisterData method. There is no way to add a business object in the report designer.
-
Hello, Please look at Demos\C#\ExportToPDF demo.
-
Hello, As far as I know, PDF cannot contain EMF images (these images must be converted to the pdf vector objects). So it's not possible.
-
Every night (0:00 GMT+3).
-
Hello, The fix will be available tomorrow (v 1.2.56).
-
You're welcome
-
Try to clear the DataSource property of the Data2 band. Now the databand is repeated as many times as many rows in the "Tocki" datasource.
-
Hello, Please attach your report file (.frx) here, or send it to tz@fast-report.com.
-
Hello, There are many reports in the demo.exe that use double pass, everything is ok. Do you have an example that I can run and debug? If you have, please send it to tz@fast-report.com.
-
Hello, This bug is fixed, you may download the current build.
-
Write this in your report script:   public class ReportScript   {     private string SecondsToHHmmss(int seconds)     {       int hours = seconds / 3600;       seconds = seconds - (hours * 3600);       int minutes = s…
-
Hello, I've updated the fr3tofrx utility; now you can specify the file to convert in the command line: fr3tofrx.exe c:\1.fr3 (would produce c:\1.frx file).
-
Hello, We will add page breaks later, it's in our todo.
-
Hello, wrote: 3. I want to log some messages when report output to printer or export to files I've added the Report.Operation property. You will able to use it in the next daily build.
-
Ok, I see the button (it appears if there are many page tabs on the screen). I'll just hide it in the next build.
-
Probably I misunderstood something, but there is only one button that deletes the page - it is on the toolbar and is not easy to hit. And you always may undo ANY operation, including the page delete.
-
Sorry, it's not possible to do what you want with the inherited report. Every object in the base report must have only one inherited object. You cannot inherit two or more objects from one base object. There is no "global header/footer".
-
Hello, 1) It's quite hard to redo an existing report to make it inherited. You may open two instances of the report designer and copy objects from one to another. 2) That's correct. You need two pages in your base report to do like you want.
-
It's A4 width - 210mm.
-
Hello, In the report designer. Go to Properties window, select Page, press "Events" button, then doubleclick the StartPage event.
-
Hello, Sorry, there is no other options. We don't plan to support band moving in a designer workspace.
-
Hello, The Text object has a property called Formats. It's a collection of FormatBase objects. If your text has several items to format, you need to add several formats using that property.
-
Hello, 1) Printable property is not used in table & matrix. 2) You cannot change the text when printing. The only way is to use two overlapped objects, one with Printable=true, another with Printable=false. 3) I will try to add something in…
-
wrote: If I select a cell in column 2 and try to resize, it will only let me resize to about 50 % of the page size. This way is correct, but you need to unlock the column width first. Select the column 2, go to Properties window and increas…
-
wrote: The only thing that would make it so much better is to be able to *INSERT* a row or column. Not just have to put it at the bottom, or right edge. Just select a row/column and right-click it to display the context menu. You will be ab…