gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
definetly not you only call design if you want to design prepare creates the output of the design, the same as show, except that it does not display the preview. what you use for a decimal separator will depend upon which language and settings yo…
-
are you sure you are looking at the object inspector and not the report tree, or have closed the object inspector Also which version of fr4 daily build# or demo, level basic, standard, pro, enterprise, and which delphi version
-
you can add a dummy value to change later from code i don't have any problem with it here. just to make sure in your code report should be a tfrxreport component or a variable of that type and the report file should be loaded first before tryin…
-
i would suggest you re read the programmer's manual working with a list of variables. you are missing the string delimiters in side the [] braces. typically you would modify the variables after loading the report and before calling show or print,…
-
NOT enough info
-
what is the text in memo1 and where are you trying to work from delphi or script code
-
start by reading the developer's manual
-
the data you are supplying does not meet one of the if conditions on subsequent passes and never gets changed back to black. the best bet is to change font.color in obp of band and reset it in oap of object or band.
-
try the users manual under script printing the groups sum total in the group's header. or the main demo dialogs and script totals in group header.
-
Set the design page(s) pagecount property.
-
Some times you have to work to get what you desire!
-
the best would be to first post in the correct forum or news groups the answer i gave was for fr4 not studio version , since i do not work with it.
-
engine.newcolumn might be what you are looking for.
-
without knowing what youare working with exactly i can only suggest. you may want to fake column by using the engine object and some variables to control output positioning engine.curx cury props. see the chapter in the user manual on using the e…
-
the bin belongs to the designpage if it is to be changed it must be done after report is loaded and before calling show or print, it cannot be changed between pages output by a specific design page.
-
see the developers manual build the functions store in a .pas file add the unit to forms uses clause and they will be available at runtime. if you want to have them available from with in the ide build it as a component good example is Stalker's a…
-
hedley much easier to create the function lib and use it then code would look like memo#.font.color := mycolor();
-
Hedley it is due to the fact that you are storing the color as a string and the delphi stringtocolor function is not available in the internal functionsyou can work around this by either adding the function in a function lib, or using variables set…
-
are you sure you did not type = in place of :=
-
control the dataset for that table either by applying a filter or by creating a master/detail relationship for tables.
-
is this the same or different tables?
-
hedley font colors are colorconstants clred.claqua, etc. not strings so try alumEAS1.font.color := ()
-
you need it to be able to work with and load rtf files and the main demo uses it for the rtf memo in the add in objects richtext report.
-
include designer in your app. from preview screen select edit select the tfrxrichview object right click select edit.
-
usually it would be the name of the report not the tfrxreport component. this value can be created at design and stored in the report.reportoptions.name property.
-
do you mean that you want to have something on the bottom of the last output page of every report? then add a tfrxmemoview with the props you want in the page footer and control its visibility in the obp event of the band. memo#.visible := (page =…
-
store the values you want in variables, probably in oap event of memos 1 to 3 in the onclick event write code to read the variables and add to the edit box.
-
have you written event handlers for the tfrxuserdataset on next, on eof, on prior, events? after masterdata1 you need anothe param to tell what kind of total running, etc
-
add a designer component allong with a tfrxreport component from the fr palette to your form call from a menu or pb typical frreport1.designreport. suggest you download the manuals the are on the trial dl page and do some reading. also compile …