OlegK
OlegK
About
- Username
 - OlegK
 - Joined
 - Visits
 - 0
 - Last Active
 - Roles
 - Members
 
Comments
- 
                You can use Gauge object.
 - 
                RptToFr3 tool is require Crystal Reports 8.0. It included in Visual Studio 2005.
 - 
                There is a plugin for FastReport .NET that converts Crystal reports. You can download it here in Extras.
 - 
                Hello, You can find sample for BP11.5 in C:\Program Files\FastReports\FastReport Studio Trial\Examples\PowerBuilder_11_5.
 - 
                It's strange. I have downloaded this plugin and opened it in VS 2008 without any problems. Perhaps, project file was crashed. I recommend you to download plugin once again.
 - 
                As I know Visual Studio 2008 can open projects of Visual Studio 2005. If you try to open VS 2005 project then VS 2008 starts the convertion wizard. Best Regards.
 - 
                Hello, You can download plugins for MySQL and other connections here http://www.fast-report.com/en/download/fas...t-download.html Best Regards
 - 
                In this case you can use following code: Report report = new Report(); report.Prepare(); FastReport.Export.Pdf.PDFExport export = new FastReport.Export.Pdf.PDFExport(); SaveFileDialog dialog = new SaveFileDialog(); dialog.InitialDirectory = @"C:\Gue…
 - 
                You can use Text File/Matrix Printer export for dot matrix printing.
 - 
                Hello, I have a little idea. You can set folder destination for reports by this way: Report report = new Report(); string FolderDestinationForReports = @"C:\Users\Guest\Documents\Exported Reports\"; FastReport.Export.Pdf.PDFExport export = new Fa…
 - 
                Hi, I guess you should try this: Report report = new Report(); report.Load(@"C:\SomeReport.frx"); ... ... report.PrintSettings.ShowDialog = false; report.Print(); or this: Report report = new Report(); report.Load(@"C:\SomeReport.frx"); ..…
 - 
                wrote: what files should be copied and registered to clients machine to run the *.fr3 files FastReport Studio should be installed on clients machine to run *.fr3 files.
 - 
                wrote: where i can learn fast report studio You can learn FastReport Studio in documentation. http://www.fast-report.com/en/download/fas...o-download.html
 - 
                Hi, There are two versions of FastReport .NET: 1. For Visual Studio 2005, 2008, 2010 .NET Framework 2.0, 3.0, 3.5. 2. For Visual Studio 2010 .NET Framework 4.0. Make sure that you using right version.
 - 
                Yes it is posible. You can use this code: Report report = new Report(); report.Load(@"C:\First Report.frx"); report.Prepare(); report.Load(@"C:\Second Report.frx"); report.Prepare(true); After that, you can export it to html and show it on web pa…
 - 
                wrote: 1. What can you do with that plugin? You can convert Crystal Reports files (*.rpt) to FastReport .NET files (*.frx). wrote: 2. How do I enable that plugin? You can download this plugin here in Extras. How to enable it, you c…
 - 
                Hi, You can try latest version of FastReport Studio 4.8.
 - 
                What is your version of FastReport Studio?
 - 
                Hi, As I know, there is RDL 2008 specification in VS 2010. FastReport .NET supports RDL 2003 specification.
 - 
                I use following code and it works correctly: private void ChangeOrientation(bool landscapeOrientation) { Â Â Â Â ReportPage page = report.FindObject("Page1") as ReportPage; Â Â Â Â page.Landscape = landscapeOrientation; Â Â Â Â report.Show(); } …
 - 
                Hi, wrote: what can i do? You should contact support. http://www.fast-report.com/en/support/ticket_list.php
 - 
                Hi, You can do the following: 1. Press Preveiw button in FastReport Desinger. 2. Press Save button in Preview window. And then you can give *.fp3 file to user. They can use FastReport Viewer to veiw this prepared report.
 - 
                Hi, You can use this code to merge two reports: report.Load(@"C:\Report1.frx"); report.Prepare(); report.Load(@"C:\Report2.frx"); report.Prepare(true);
 - 
                wrote: Any ideas? You can use spaces.
 - 
                Hi, Which version of Visual Studio and .NET Framework do you use?
 - 
                Hello. This bug fixed. You can download the new version of FastReport .NET tomorrow.
 - 
                wrote: i tried the following code: report1.load(" File Path ") previewcontrol1.document = report1.document the second line is showing error. It's not surprising. Report and PreviewControl does not have the document property. Use th…
 - 
                In FastReport .NET you can export the report to Text File/Matrix Printer and then print it at dotmatrix printer.
 - 
                If you are developer, you can set the tab how a separator from code: using FastReport.Export.Csv; ... ... Report report = new Report(); reprot.Load("report.frx"); report.Prepare(); CSVExport export = new CSVExport(); export.Separator = "\t"; report.…