
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, This code sets the watermark to all pages and refreshes a report: Â Â Â Â Â Â Watermark watermark = new Watermark(); Â Â Â Â Â Â watermark.Enabled = true; Â Â Â Â Â Â watermark.Text = "TEST"; Â Â Â Â Â Â ReportPage page = previewControl…
-
I mean this: select preview ->select Print dialog -> press "Settings" button -> set duplex for double side print out -> select print .
-
Hello, If you are extending the preview window, you need to use PreviewControl's methods such as EditWatermark(). See the example at Demos\C#\CustomPreview folder.
-
upd: This functionality also works with nested groups.
-
This property was added some time ago. You should update your version (subscription renewal is required) if you need this functionality.
-
Hello, See the following manual topic: http://www.fast-report.com/documentation/U...intheheader.htm
-
Hello, Could you send me the report file (.frx) and the pdf file? You can attach it here or send to tz@fast-report.com.
-
Try to set the duplex in the print dialog, "Settings..." button. This will bring up the printer driver's setup window.
-
Hello, Looks like the problem is either in the driver or .Net Framework code. We cannot fix it. Try to use another driver, FastReport.Oracle or FastReport.OracleODP from FRNetConnections.zip - you can download it here: http://www.fast-report.c…
-
This should work with the original FastReport.dll. If you have replaced the dll (and registered own dll in the GAC), the design-time editor will not work.
-
Hello, Could you please send me the project code to tz@fast-report.com?
-
Hello, I need the test project that demonstrates the error. You can send it to tz@fast-report.com.
-
Hello, Load the report before you assign it to the DesignerControl: Report report = new Report(); report.Load(Application.StartupPath + "\\valbaran001.frx"); designerControl1.Report = report; ...
-
Hello, Picture1.Image = new Bitmap(new MemoryStream(here_is_your_byte[]_array));
-
Hello, Could you send me the report file (.frx) and the piece of code where you register a data? You may send it to tz@fast-report.com.
-
Hello, Try this: designerControl1.Restrictions.DontShowRecentFiles = true;
-
Hello, I was able to reproduce the bug. I will inform you when I find the solution.
-
Hello, Check the page settings in the FastReport designer (File|Page Setup menu). On the "Other" tab there is a setting for duplex - set it to the correct value (default/simplex/duplex).
-
Hello, This is by design, FastReport always uses CenterScreen for dialogs. You can however change this in the form.Load event (in the report code): Â Â Â Â private void Form1_Load(object sender, EventArgs e) Â Â Â Â { Â Â Â Â Â Â Form1.Form.Start…
-
Hi Bryan, There is no way to export to .ps now. We have no plans to implement it in the near time.
-
Please send it to my email tz@fast-report.com.
-
The zip archive appears damaged. Could you check if the error happens in the latest version of FastReport.Net? If so please send me the files to tz@fast-report.com.
-
Sorry you should ask VCL team in the appropriate forum thread.
-
Hello, You may access the prepared matrix and do something with its columns (hide some, or adjust width). See the attached example which you can run from the Demo.exe.
-
Acrobat Reader is a win32 application which prints (probably) using GDI. FastReport as any other .Net application uses GDI+ to draw/print.
-
Hello, Probably freepdf does not support gradient fills. Try to play with the freepdf settings.
-
Hello, You may use the Config.ReportSettings.ReportPrinted event handler which fires after the report was printed.
-
Hello, You may disable the RTF export so it will not appear in this menu. To do this call the following code: RegisteredObjects.FindObject(typeof(FastReport.Export.RichText.RTFExport)).Enabled = false;
-
Hello, The report objects have no Tag property.
-
Hello, Yes, you can.