gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
you don't need to find out out put height. you must create your richview's design properly, create a child band with a richview for each one, set stretch props and allow split and stretch mode for memoview. and of course set the child prop of the…
-
try using a hex value.
-
did you run fr's recompiler with the ibx packages selected?
-
you must create the other shapes in the correct band(parent object) a shape view is not a parent object.
-
In that case i would check to see if your app is calling the correct report.
-
Amazed that it works it produces list index out of bounds error for me.
-
if you are trying to select a record either parameterize your query or use urls. run the main demo and look at other features, "urls,anchors" report or under internaldatasets, "Internal query report" or under ndialogs and script, "choosing rec…
-
check this line frxReport1.LoadFromFile(path + 'forms\DAYReport.fr3' ); you may need a backslash before forms if it is a subfolder to the apps folder were your variables created as categorized variables or typed variables ? if categorized vari…
-
where are you writing this code? you can't create the bitmap inside the report and you can't set size font or font colors.
-
instead of hacking someohne elses code (cut and Paste) write your own code using your ide environment when you dblclick in the event side of the ide's object inspector the event syntax is created and inserted into the various sections of the delph…
-
since you were cutting and pasting code you probable forgot to hook the event to the tfrxreport component.
-
Mick you are showing him how to use it in a group footer not in each line of the masterdata
-
use a variable in the balance memo write code in obp event of band to set the variables value. Balance := Balance + (() - ()); declare your variable at the top of the code page not within in the procedure. you will also need to initialize the va…
-
no you are only setting the visible property not the out put location. However you can mod the engine's curx or cury position read the user manual on script and using the engine object. Also Note that the engine processes the design page from top…
-
if you created your project using demo version ( full restricted version ) you have probably purchased and installed a lower level version which does not have the control available and therefore the error.
-
Assuming the report engine convertnulls property has not been changed in the obp event of the object write code objectname.visible := ( > 0)
-
and further you should be doing your error checking where you are inputting the data.
-
read the user manual chapter on report design refrence.
-
make sure the display setting of the memo is correct and also that the aggregate expression has the correct flag after the bandname.
-
add the header and footer then the masterdata. or set designer freebandsplacement prop to true.
-
Monte Carver wrote: » Now here is a question. After much futzing, and an unintended reboot (yes a BSOD). I load the report again, and now the GroupHeader break works. Why? Is this kind of behavior classic of Fast Reports? no it is not. …
-
the subreport takes control of the engine so you may need to use the oad event of a memo to gather values and you will need to use the obp event of the footer with the page sum to retrive the gathered value
-
you will need it for the count function sample using nested group report of main demo band8 memo15 note set displayformat to text and use inline formatting for eachline in the memo that needs it. Total this order: [Sum(*) #n%2,2m] items [COUNT…
-
You should take a look at what Mick has sugessted it may better suit your needs. as to not seeing rows Maximum of Day >> XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX XX Minimum of Day >> XX XX XX XX XX XX XX XX XX XX XX XX XX XX …
-
I don't see any flag set in the sum function [SUM(,MasterData1)] should have a flag set after bandname, flag
-
are you confusing the alignment of the object within the band banone and the halign property which is the alignment of text within the text object's memo.
-
not clear what you mean by adding rows. but maake sure that the band properties are set correctly. ie stretching allow split etc.
-
use the aggregate function builder and set the correct flag for the aggregate expression. see the user manual chapter on groups, aggregates. BTW when posting about a possible bug please state what version and build of fr you are using
-
make the report 2 pass on the first pass find max min values on finalpass set the color. writing code in the obp event.
-
use an unattached child band containing objects you want ie. empty text objects or lines then write code to show the child band the required no of times. using engine.showband method see the user manual on using the engine object