gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
Try to set TfrxReport.PreviewOptions.Maximized to False
-
Set main form ShowHints property to True
-
wrote: or what it did Changed page dimensions when lanscape orientation selected This property doesn't used now
-
Hello, See a Programmer's manual "1.12 Creating a report form from code" chapter
-
Try to use report with subreport (for Same data from DataSet)
-
I think this property should be removed   published     property Copies: Integer read FCopies write FCopies default 1;     property Collate: Boolean read FCollate write FCollate default True;     property PageNumbers: String read FPage…
-
You can use only one connection from Delphi's form in report
-
I think there are no such feature in XLS export filter
-
Try to wtite user function to access TfrxOLEView.OleContainer from Delphi's code
-
FR don't have such function. Use TfrxMemoView
-
1. TfrxReportPage(frxReport1.FindObject('Page1'))).Bin 2. uses frxPrinter; frxPrinters.Printer.PaperNameToNumber()
-
See a modified report tempate from FRDemo in attach
-
I think you should create a topic in .Net forum
-
Attach small demo project with problem
-
See FRDemo "What's new in FastReport 4" section "Reset page numbers" report
-
Try to assign MasterData with first dataset, add several DetailData with RowCount=1 and go to next record of another datasets in report's script
-
See test project in attach
-
1. Install FR for D6 2. Store LibD6 folder 3. Uninstall FR for D6 4. Install FR for XE 5. Restore LibD6 folder
-
Attach small demo project with problem
-
You should set different values for band's Top property
-
wrote: 1.9.1 Numbering of pages in a composite report You can use the ?«Page,?» ?«Page#,?» ?«TotalPages,?» and ?«TotalPages#?» system variables for displaying a page number or a total number of pages. In composite reports, these variables work …
-
Try to use composite report wrote: 1.9 Building a composite report (batch printing) In some cases it is required to organize printing of several reports at once, or capsulate and present several reports in one preview window. To perform this, …
-
Set frxXXXComponents.DefaulDatabase property
-
What edition (Basic, Standart, Professional, Enterprise)?
-
Check FastReport 4.0 Tee Componets package in IDE (menu Component-Install Packages )
-
If you want save preview pages - use TfrxReport.PreviewPages.SaveToFile
-
You can translate all FR's forms with FR Recompile wizard (recompile.exe) and use FR's printer's dialog Also you can make one .frc file that contains all resources. This file can be loaded from your application by this code: uses frxRes; frxReso…
-
TfrxMemoView(frxReport1.FindObject('Memo1')).Text := 'test';
-
E-mail for common questions and technical support - spirin@paritetsoft.ru Google group for discussions - http://groups.google.com/group/fastreport_..._harbour/topics
-
wrote: Is it possible to activate a dialog from a dialog-page from script? Use DialogPage1.ShowModal; wrote: Delphi has ShowMessageFmt. Nothing like this in FR? Is there any way of formatting the output in a showmessage or messagedlg? I…