gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
first realize bands don't shrink, they strech(grow) vertically. try this set the bands stretch property, set the memoviews stretchmode property and set the memoviews height to 0 Btw current is 4.9.21
-
only doc's are what is in the user manual try making report 2pass onfirst pass gather data building strings for fixed data for use in the chart on the second pass pass the values into the chart and make the chart visible. Another approach is to…
-
both the child band and the subreport object are just place holders make your designs in the subreport's design page.
-
it will depend upon where you make this call. and the code prior to it. ie frxreport1.loadfromfile('myreport.fr3'); frxreport1.preparereport; frxReport1.PreviewPages.SaveToFile('c:\new.fp3');
-
do it in the empty "begin end." block of code that is the first script code to run.
-
is backpicturevisible set to true.
-
are you sure you are not trying to load a report built in fr4 in an older version of fr.
-
IIRC it is not included in basic or standard only in pro and up
-
not clear as to what you are trying to describe. look at the main demo Basic reports nested groups report, is this what you are trying to describe.
-
bad code should be frxReport1.PreviewPages.LoadFromFile('path&filename.fp3'); frxReport1.ShowPreparedReport;
-
you do not call prepare to design the report. typical is frxreport1.designreport add the designer component to your app you can set its save, open and template dirs as you want default save is to the applications dir
-
open any report in design mode in the report tree window select report look in the oi and you will see the ver number. you dont need the sql expression just an expression in the memoview. look at the main demo underbasic reports nested groups re…
-
this is not a bug it is as designed, you must create dot matrix reports seperately.
-
what version and level of fr are you using
-
you might want to create another calc field that assigns integer value ie 1 for 1 to 14 of contact age, 2 for 15 to 21 3 for 22 to 30 4 31+ use that field for condition of group header and you should only need 1 grpheader, 1 mdata, 1 grpfooter
-
Works fine for me D2010 fr4.9.21
-
EccoBravo wrote: » Hallo, I don??t get any data/values into frxReport1.Chart1.Contour1. I intend to show 3D charts in the report in kind of A = function(x,y) Furthermore, I intend to show a sequence of k charts in the report, k is the …
-
studio version requires dll licensing for end users to design reports. if you want lots of functiona;ity then you need at a minimum standard level of fr4., no source code but internal scripting is included. IMHO you should start at pro level th…
-
datscho wrote: » And the second problem? What do I wrong? Can you give me more info, please? you cannot have multi level inheritance.
-
AFAIK You cannot nest inheritance 1 level only problem 1 should be no problem it just indicates a position on the design page
-
Need more info what level and build no of fr are you using internal datasets or external(frxdbdataset) to connect to data? i am not a c programmer, but have never had that kind of problem with the Bde in delphi.
-
be careful when resetting design height and top properties of objects effects are cumulative on sucessive iterations of the object, if the props are not reset and you can endup widowing objects to the page. When controlling output, you should use …
-
What version and Build number?
-
first you are in the wrong event from delphi after loading a report and before calling any method to run the report get the designpage and set its backpicture property read the programmers manual on accessing the report designpage
-
Fabrizio Monti wrote: » Hi let's suppose I have 3 child bands with a memo in each one. How can I space equally vertically my memos inside the bands? Statement is ambiguous you only have 1 memo in each band or do you mean 3 memos in 1 band?…
-
page footer cannot be stretched it is a fixed size. use a child or other footer.
-
you can't recompile with basic versions you do not have source code.
-
your problem is probably in the fact you are only installing source code and you may not be setting everything up properly within delphi. try using the full daily build installer for your delphi version
-
assuming you declared your variable at the beginning of the script before any procedures. var lhrs: integer procedure MasterData1OnBeforePrint(Sender: TfrxComponent); begin lhrs:=lhrs+; end; begin lhrs:=0; {could initilize here} end. Y…
-
also note that objects within a band are processed in creation order so you cannot set the value of a previously processed object from one that comes after. also the value property of a memo is that of the last variable processed within the memo