FastReport Viewer

Um utilitário gratuito para visualizar documentos finalizados criados por produtos FastReport nos formatos FP3 e FPX.

Visualizar e imprimir

O relatório pré-preparado pode ser examinado em detalhes na janela de visualização do Visualizador de relatórios. Nosso componente suporta o trabalho com parâmetros, detalhamento em vários níveis e relatórios interativos. Você pode definir uma resposta a um clique do mouse em um objeto na janela de visualização. Por exemplo, você pode criar e exibir outro relatório que mostre informações detalhadas sobre o objeto em que o usuário clicou.

Configurações adicionais de impressão. As seguintes opções estão disponíveis para você: cortar páginas de relatório grandes em pequenas, imprimir várias páginas pequenas em uma grande e imprimir em um determinado formato com escala. Você precisa imprimir um relatório contendo páginas A3 em uma impressora A4 comum? Agora, isso não é um problema!

Preview and print

Artigos reenviados

29 de fevereiro de 2020

How to disable printing reports and other items from the menu when viewing the report FastReport.Net

The main report viewing tool FastReport.Net is Viewer. This viewer has a rich toolkit for storing, exporting, printing, and other manipulations with a report. All this variety is very useful but not always necessary. For example, for users who only view and print reports export emailing is absolutely useless. Also, many people do not need a big list of available export reports. You just confused and lose time to find the right one. In such cases, we would like to leave only the necessary functionality for these users. And it can be done quite simply. This question also arose for the user of the Combit List & Label report generator. The report designer of FastReport.Net, as you know, also allows you to view the reports. To do this, he uses the same Viewer. And you can customize the list of available exports in the designer's settings. File-'Options-User Interface menu:   Exports Menu button opens the settings window for export display:   You can customize the display of both individual exports and the whole group. There's a Default Menu button to quickly restore your original settings. For example, we removed exports from the display to the PDF, Office, and XML format. And indeed, when we view the report, we will see that they are no longer on the list of exports:   But from the report designer we can only set up a list of exports. What about other controls? To do this, you'll have to use programming skills. When creating an app that will run reports, we can set the reviewer's menu settings. For example, this code: 1 2 3 4 5 Report report = new Report(); report.Load("App_Data/Master-Detail.frx"); report.Prepare(); FastReport.Utils.Config.PreviewSettings.Buttons = PreviewButtons.Print | PreviewButtons.Design; report.ShowPrepared();  Here we set the button display. To be precise  - we just name all the buttons to be displayed: Print and Design. As a result we get: Great result - nothing more. Besides the buttons also displays the page number in the input field. It cannot be removed, otherwise you won't be able to go to other pages without page navigation buttons. Now you can experiment a bit. If your application includes any logic for hiding / showing the controls in the preview, it will certainly be a useful opportunity to return everything to the initial form: Config.PreviewSettings.Buttons = PreviewButtons.All; You can go the other way and not list the buttons that should be displayed, but rather to list those that you want to exclude: Config.PreviewSettings.Buttons ^ = PreviewButtons.Email; At the same time, send e-mail button will disappear and the rest will be available. Of course, you can edit the list of available exports, by analogy with the above example. Also you can edit the export list through:  Config.PreviewSettings.Exports And you can edit the exports to the clouds: Config.PreviewSettings.Clouds
Ler
08 de março de 2019

How to work with the report designer and viewer from the command line

In addition to the libraries themselves, FastReport.Net also includes separate programs - Designer and Viewer. The first one, as you understand, is intended for creating and editing report templates. It has a report preview mode from which you can view the report, export it to the desired data format and send it to print. The Viewer is designed to view reports in fpx preview format. The report file in this format contains, besides the report template, also directly the data that will fill this report. That is, the * .fpx file is essentially a ready-to-view report. In terms of functionality, the Viewer is almost identical to the report preview mode in Designer. Actually, Designer compiles the report for viewing in fpx. Both of these programs have a graphical user interface. However, few people know that they can be run from the command line with parameters. Let's take a look at the way to work with Designer from the command line. - Firstly, you can start the program with the command: Designer.exe If, on the command line, the directory with installed FastReport.Net is selected, then you can limit yourself to this command. Otherwise, you need either to move to the desired directory using the CD command, or add the path to Designer.exe. - Secondly, you can open the report template in the designer using the command: Designer.exe Report.fpx Where Report.frx is the name of the report template. If it is not in the currently selected directory, then you need to specify the path to this file. By executing this command, you will see a designer with an open report template, i.e. you can immediately start editing the report. If the path to the designer or to the report template contains spaces in the directory names, then you need to quote it - “My reports / Report.frx”. - Thirdly - you can run the report immediately in preview mode: Designer.exe Report.frx /preview That is, you specify two parameters - the path to the report template and the key to start the preview mode. And now we will have look at the way to work with the Viewer program from the command line. - As in the case with the designer, you can simply launch the report viewer with the command: Viewer.exe Here you just need to specify the path to the executable file of the application. - Add parameter - path to the report file in * .fpx format: Viewer.exe Report.fpx Where Report.fpx is the file path. This command will launch the program with the loaded report. - And last, a new feature - the possibility of simple printing Viewer.exe Report.fpx /P That is, we specify the report file and key - start printing. At the same time, we will not be able to see the report viewer itself, but only the print form:   It remains to set the print settings and run it only. If you run Viewer.exe / P, the print dialog with the settings will open. After clicking on "Print", a window with a command line will be displayed, which can be used later for "silent" printing on a particular printer. It can be copied with Ctrl + C and used later.
Ler
Fast Reports
  • 800-985-8986 (English, US)
  • +31 97 01025-8466 (English, EU)
  • +49 30 56837-3928 (German, DE)
  • +55 19 98147-8148 (Portuguese, BR)
  • info@fast-report.com
  • 66 Canal Center Plaza, Ste 505, Alexandria, VA 22314

© 1998-2025 Fast Reports Inc.