gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 565
- Last Active
- Roles
- Members, FR Team
Comments
-
Yes. You can see a sources, event's headers wrote: or by posting on this forum? Better to create support ticket http://www.fast-report.com/en/support/ticket_list.php
-
sample in attach
-
Why I don't see WHERE Grades.ClassSet = [img]style_emoticons/<#EMO_DIR#>/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />1 in your detail sql?[/img]
-
wrote: I added the uses frxBarCode, but it didn't help Attach small demo project here
-
See an User's manual "2.8 TfrxDBDataSet component" and "2.9 ???Customer List??? report" chapters
-
Use two datasets: first for unique group header's values (Master), second for group data (Detail). Use cross-tab with detail dataset
-
Attach your report template here
-
Use MasterData and DetailData bands See User's manual "2.22 Report with two data levels (master-detail)" chapter
-
Try to delete two CR at the end of your text
-
Try to use user function and close TfrxReport.PreviewForm in TfrxReport.OnEndDoc event
-
Modified script for 52.fr3 from FRDemo procedure Button1OnClick(Sender: TfrxComponent); begin   BDEQuery1.Close;   BDEQuery1.ParamByName('p1').Value := StrToInt(Edit1.Text);   BDEQuery1.Open;                          …
-
See here: http://www.fast-report.com/en/forum/?p=/discussion/9049
-
See attach
-
wrote: Does anyone would be so kind to tell me how can I count events as I wrote above? Without test report template based on FRDemo database? I think, no
-
Use two-pass report. See FRDemo "Dialogs and script" section "Totals in group header" report
-
Did you try to add TfrxBarCodeObject on your form?
-
wrote: This cannot be done inside my query, as I will then lose the functionality of searching for data in a specific date range, for eg. (01/05/2012 to 31/07/2012). Use additional query for searching
-
Do you use latest build of FR?
-
Aggregate functions works in footers only
-
function GetInfoFR(const FileName: String): String; var Xml: TfsXMLDocument; Root: TfsXMLItem; Ext: String; begin   Result := '';   Ext := Copy(FileName, Length(FileName) - 2, 3);   if CompareText(Ext, 'fr3') = 0 then   begin     Xml := …
-
You should use aggregate function with flag=1 See attach
-
Did you try to change TeeChart version with TeeChart9 option?
-
Add TfrxCrossObject to project or add frxCross unit in uses list
-
Try to use stretched TfrxMemoView and set TfrxMemoView.Height to 0 before set font size
-
Attach a sample what you want to get here
-
You should resort your dataset. For example, close query, change SQL and open query again
-
This is forum for FR VCL. Not FR.Net or FR for ActiveX
-
I think FR5 will export TfrxRichView as image too - http://www.fast-report.com/en/forum/?p=/discussion/8310 Rendering of richedit is complex
-
Did you use stretched band?
-
uses frxClass, frxPreview, ComCtrls, ToolWin, Buttons; ... procedure TForm1.ButtonClick(Sender: TObject); begin     ShowMessage('My Button pressed'); end; procedure TForm1.frxReport1Preview(Sender: TObject); var   Button: TSpeedButton; begi…