gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
1. Sorry, but FR doesn't have such feature 2. Read about data splitting: https://www.fast-report.com/public_download...a_splitting.htm
-
wrote: The two child bands shall be independent from each other. That means that the user should be able to activate child band 1 or band 2 or also both. Add band. Add Child1 and Child2. Set Band.Child = Child1, Child1.Child = Child2, Child1.…
-
procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin   if mod 2 = 0 then MasterData1.Child := Child1 else MasterData1.Child := Child2;                                                  …
-
wrote: how should FR know about a variable that is defined in Delphi? This script will be works in the run-time only. If you want - you may use report variable instead of script variable
-
frxReport1.Script.Variables['HideChild'] := False; Add script (not report) variable. Use my code only
-
wrote: Or how could I tell FR that the above code should only be executed if child1 shall be displayed at all? (It is an optional information that the user chooses to display or not display before print) Use in the Delphi: frxReport1.Script.…
-
This code should work. Check your code and script
-
Set frame for TfrxCheckBoxView
-
See fs_igraphicsrtti.pas
-
Try to use latest FR 5.6.2 - if problem still exists - use 64bit application
-
wrote: if you wish, we can correspond on the forum instead of support ticket Support tickets have high priority
-
This code just clear RTF formatting. To set TRichEdit font size do in the Delphi TfrxRichView(frxReport1.FindObject('Rich1')).RichEdit.SelectAll; Â Â TfrxRichView(frxReport1.FindObject('Rich1')).RichEdit.SelAttributes.Size := 20; Â Â frxReport1.Show…
-
From ticket 441316: procedure Rich1OnBeforePrint(Sender: TfrxComponent); var s: string; begin s := Rich1.RichEdit.Lines.Text; Rich1.RichEdit.Lines.Clear; Rich1.RichEdit.Lines.Text := s; end;
-
Delphi: var BMP: TBitmap; begin     BMP:=TBitmap.Create;     BMP.LoadFromFile('Test.bmp');     frxReport1.Script.Variables['pBMP']:=integer(BMP);     frxReport1.ShowReport();     BMP.Free; end; script: procedure Picture1O…
-
You may use FR's internal function DATE to get current date: [Date + ]
-
FieldName=Field Alias See FRDemo CustomersDS.FieldAliases CustNo=Cust No Company=Company Addr1=Addr1 Addr2=Addr2 City=City State=State Zip=Zip Country=Country Phone=Phone FAX=FAX TaxRate=Tax Rate Contact=Contact LastInvoiceDate=Last Invoice Date
-
var StartValue, EndValue: Variant; procedure frxReport1OnStartReport(Sender: TfrxComponent); var DS: TfrxDataSet;                                                              begin   …
-
Try to set Footer1.Stretched to True, Subreport1.PrintOnParent to True
-
wrote: any possibilities to have export button back all of my customers are used to do export in this way No, you can't do this in the easy way. If you want - you may change FR's sources (frxPreview.pas)
-
wrote: should i translate it by myself? Yes. FR Team can translate English and Russian resources only
-
You may use dataset's OnFirst, OnNext, OnPrior, OnGetValue, OnCheckEOF events and get dataset like TfrxDBDataset
-
Create small demo project based on standart Delphi's components and local database like dbf or mdb and send it to support@fast-report.com
-
Use English. See a sample for FRDemo in the attach (if I translate your message by Google correctly)
-
No any news. You may use TfrxOLEView for one page PDF, but it will not scaled
-
Download FR Trial and try to use TfrxPreview(frxReport1.Preview).AddPreviewTab(); in the TfrxReport.OnClickObject event
-
Attach report template (fr3) and prepared report (fp3)
-
What version of FR do you use?
-
Use Alt+Tab as workaround
-
Try to use TfrxADOQuery.ExecSQL
-
I think better to ask your application developers how to do this. If your developers will have a problem - they may contact FR support support@fast-report.com