wamprecht
wamprecht
About
- Username
- wamprecht
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
This is the example of the user-Document: var Band: TfrxReportTitle; Memo: TfrxMemoView; begin Band := TfrxReportTitle.Create(Page1); Band.Height := 20; Memo := TfrxMemoView.Create(Band); Memo.SetBounds(10, 0, 100, 20); memo.frame.typ:=[ftL…
-
By creating a complex report, I do not remarked, that the format was B3. If I would printing, the paper was too small. Is there a possibilty to shrink the total report to B4?
-
I have changed my program to: var i,j:integer; memofeld:array[1..5,1..5] of tfrxmemoview; band:tfrxband; Page: TfrxReportPage; begin Band := TfrxReportTitle.create(page); Band.Top := 0; Band.Height := 20; for i:=1 to 5 do for j:=1 …
-
I only write by a buttonclick: dm.frxreport1.DesignReport; dm is in my program a datamodule. Perhaps thats the problem. Thanks. Udo