Default Avatar

Schreij

Schreij

About

Username
Schreij
Joined
Visits
0
Last Active
Roles
Members

Comments

  • You could make a 3-page report with on page 1, 2 and 3 exactly the same content, except for the memo with the text 'Original', 'Copy1' and 'Copy2'. Copy and paste from the first to the next pages works fine, but you have to remember youself the po…
  • I had the same problem, then used a ReportSummeryBand (Height=245 mm) and placed the Memo on it (Streched = True, Height =240 mm) and now it prints (previews) without truncating on 2 or more pages. I know this is not the correct way to solve this p…
  • AlexTZ wrote: It will be ready when it's documentation will be ready Please take enough time to produce a good documentation. As I (and others) have not sufficient skills to dig in the source code, a good doc and help-file saves lots of time…
  • I found out the correct code: These lines are false: . frreport1.Pages.Pages[0].pgBin := prn.GetBinIndex(listbox1.itemindex); . frReport1.Pages.Pages[1].pgBin := prn.GetBinIndex(listbox2.itemindex); The correct lines are: . frReport1.Pages…
  • I do it this way (from Delphi): Form2:= TForm2.Create(nil); //Form2 is the Form with the frReport with Form2 do begin try frReport1.Pages[0].Visible := False; frReport1.ShowReport; finally Release; end; end;
  • Alex thank you for your answer. I use the Delphi PrinterSetupDialog. It sets the default Printer (and bin!) for the Application. FastReport uses the default printer so I can set the printer for my report. The problem is that I want to set th…
  • Please tell us how you did it. Did you use PrintPreparedReportDlg? Or did you use Delphi's PrinterSetupDialog?
  • I once used the method Alex described I have a (Client)Dataset showed in de DBGrid. I show some fields for selection (and there is a field FieldID wich is not shown). There is also a (ADO) temp table and a sql-string for using in this table…
  • I once did this in QuickReport (excuse le mot). I choosed 3 columns and made one band (height 1/8 of the page height). On that band I placed the name, address, city, country dbtext (in FR memo). I wrote an article on this subject in the Dutch Bla…