gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Use FR 4.12 [IIF(1=1,'yes','no')] works OK with FR 4.12
-
See a small demo project based on ADO components in attach
-
See a Developer's manual "1.12 Creating a report form from code" chapter
-
Use link without space http://www.fast-report.com/pbc_download/LibD16.zip
-
Use Report.NewColumn
-
Try to use latest FR 4.12.1
-
wrote: It would also be nice if the complete list was surrounded by a rectangle because I may have to produce more than one group of checkboxes like this. Attach a sample what you want to get
-
Can you attach small demo project based on standart Delphi's components?
-
Try var DS: TfrxDataSet; begin     DS:=Report.GetDataset('Items');     DS.First;     while not DS.Eof do            begin                  ShowMessage(DS.Value('Part Name'));         DS.NEXT;   …
-
See modified report from FRDemo in attach
-
Try [IIF(( >= 0) and ( <= 9), '0' + IntToStr(<YourDataSetName."YourFieldName">), )]
-
wrote: Like in this picture imagine each text would be a memo Yes wrote: and each row a masterdata No. Only one masterdata See also PrintTable and PrintStringGrid demos in FR's DEMOS folder
-
Try to set Report1.EngineOptions.IgnoreDevByZero := True
-
Try to use frxReport1.PrepareReport; frxReport2.PrepareReport; frxReport1.PreviewPages.AddFrom(frxReport2); frxReport1.ShowPreparedReport;
-
What edition of FR do you use? FR Embarcadero Edition and FR Basic edition doesn't support script
-
What edition of FR do you use? FR Embarcadero Edition and FR Basic edition doesn't support script
-
See here: http://www.fast-report.com/en/blog/index.p...on_en&id=26
-
wrote: I've tried to work around this by using a Header with a bottom frame, left and right frames in the band, and Footer with a top frame. But the footer only gets output after all the data, and we need that on each page. Try to set bottom …
-
Did you install XE2 Update 3?
-
See Programmer's manual "1.12 Creating a report form from code" chapter
-
wrote: DeleteDC is missing from the end of the procedure. This procedure fixed. Use latest FR 4.12.1
-
See PrintTable demo
-
Try to set {[dataset.AssignedDate]} memo's Align property to baLeft
-
Fast Report Embarcadero Edition doesn't support export to Excel: http://www.fast-report.com/en/products/rep...ure-matrix.html
-
QR support will be added in FR5
-
procedure TForm1.frxReport1BeforePrint(c: TfrxReportComponent); var   Cross: TfrxCrossView;   i, j: Integer; begin   if c.Name = 'Cross1' then   if c is TfrxCrossView then   begin     Cross := TfrxCrossView(c);     for i := 1 to 1…
-
There are no such solution
-
procedure TForm1.frxReport1ClickObject(Sender: TfrxView;   Button: TMouseButton; Shift: TShiftState; var Modified: Boolean); var MyClipboardFormat: Word;     MyHandle: Cardinal;     MyPalette: HPalette; begin     if Sender is TfrxPict…
-
Try TfrxChartView(frxReport1.FindObject('Chart1')).SeriesData.Items[0].YSource := 'frxDBDataset1."field1"';
-
Try to use user function