gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
You must install MS Excel for XLS OLE export filter
-
Use Report.FindObject in script
-
var List: TStringList;          begin     ADOQuery1.Open;                  List := TStringList.Create;                                                       …
-
You must assign MasterData1 with frxDBDataset1
-
FR can't to export to FLASH format
-
Try procedure TForm1.frxReport1BeforePrint(Sender: TfrxReportComponent); begin     if Sender.Name = 'Subreport1' then       Sender.Visible := False; end;
-
No other suggestions See a small sample in attach - all works OK
-
1. Try to disable UAC in Win7 2. Try to re-download installation package 3. Try to completely reinstall FR: - uninstall FR Trial; - remove all *frx*.dcu, *fs*.dcu, frx*.bpl, fs*.bpl from Borland\Projects\Bpl (My Documents\Borland Studio Projects…
-
You can't to use macros in ADOQuery (TADOQuery doesn't support macroses), you can build SQL statement or use parameters only
-
Set parGiorno value to 'LUNEDI' instead of LUNEDI
-
IIF function doesn't declared in FS. You must declare it in FS
-
Attach a sample with problem based on FRDemo database
-
And comment your code procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin   //AdoQuery2.Close;   //AdoQuery2.Open;      end;
-
Try to set permission for full access for all users for Fast Report 4 folder
-
Did you run installer as administrator?
-
Try to use Select from Select statement This SQL works OK in MS Access Select * from (SELECT tab1.id*3, tab1.id , tab1.name FROM tab1) order by 3 wrote: (I find it rather amazing that FR does not support sorting, especially as it does in c…
-
All works OK. See a test report template in attach
-
Try to set MasterData1.StartNewPage to False and set ADOQuery2.Master to ADOQuery1
-
FR can't to sort datasets Try to use (SELECT cumulativeAttendance FROM tbl_attendance AS T WHERE t.weeknumber = 14 AND t.Adno = tbl_attendance.adno ) - (SELECT cumulativeAttendance FROM tbl_attendance AS T WHERE t.weeknumber = 15 AND t.Adno = tbl_…
-
wrote: No response on this? I have to make a decision on the purchase and I would, thank you. Why you ignored second post from stefque?
-
Try FORMATFLOAT('00',) +'-' + FORMATFLOAT('0000',)
-
You may create child band, copy all objects from header to child band and show child band when you need with Engine.ShowBand command in script
-
Also you can use script variables instead of report variables
-
See a Programmer's manual: 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, t…
-
Hello, You may use Engine.ShowBand and show any band when you need For example: procedure PageHeader1OnAfterPrint(Sender: TfrxComponent); begin     if MasterData1.Dataset.RecordCount = 0 then Engine.ShowBand(Header1); end;
-
Try if engine.freespace < GroupFooter1.Height then   Engine.NewPage; Engine.CurY:= Engine.PageHeight - GroupFooter1.Height - 1;
-
Try diadatamodule.AppSrvClientGeneral.Answer.GetStreamField(2,reportdata,fldtype); reportdata.Position := 0; frxReport1.PreviewPages.Initialize; frxReport1.previewpages.LoadFromStream(reportdata); frxReport1.ShowPreparedReport;Â Â frxReport1.Previe…
-
No
-
See Programmer's manual "1.12 Creating a report form from code" chapter
-
Use TfrxOverlay band