
gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
where are you calling showreportt from? remember when you are trying to assign values to a categorized variable in the report you must run the compiled exe created by the project if you are already doing this , insteadof calling shown reportcall…
-
FReport := TFrxReport.Create(self); // now that youhave created the report object //set any options here frreport.storeindfm := false;
-
check the allow stretch prop of the band containing the subrep also the print on parent property of the subrep object
-
there is a number of ways to do this 1 create a variable in fr with no value, when you use it in the report and it is encountered by the report engine the external ongetvaLUE EVENT OF FR IS FIRED and you canpass a value into it from delphi. see …
-
check the bands allow split property you may need to set it for thr band that contains the subrep also
-
In the designer window select the page scroll down in the object inspector and set large design height to true
-
2 subreports side by side detail 1 in left subrep detail2 in right look at the main demo side by side subrepots
-
not enough info have no idea what you are asking
-
what version of fr are you running? to use the find object method you must first load the report then you cast the object typically var Memo1: TfrxMemoView; Memo1 := frxReport1.FindObject('Memo1') as TfrxMemoView;
-
YOU PROBABLY HAVR A data connection wrong possibly the report component itself is connected to a data set
-
look at the main demo fcrosstab reports aly row colors use row index prop for rows columnindex prop for columns
-
try this attach a child band to the group footer place the memos you want hide in the child band write coden to hide the child band
-
read the user manual on expoting memo positions and spacing are critical when exporting to word docs
-
forum language is english please repost in english
-
Try running your code in the obp event of the footer
-
read the user manual chapter on using the engine object to control curx cury positions
-
save a copy of your output file.fp3 and a copy of your design ..fr3 file and posy here
-
Try using page columns not band columns
-
yes as long as your dataset contains a field indicating the style
-
use the external events of the tfrxreport component every item in the report fires these external events read the programmers manual on how to use the events
-
hi roy i think the problem lies in the last case statement my pref would be to set the export props within each case
-
"If I use Export(frxPDFExport1) The pdf file is the right size but its blank. If there's anything there its white on white." did you call prepare report first
-
Yes you can create different design pages for each layout, some variables , a dialog page to select the options you want and set the variable values and set the page visibility according to the options selected
-
simply subtract one date field from the older date field ie [Round(Now-)]
-
if a report is dependent upon code of your exe for values you cannot preview the report from the ide environment
-
since the name is stringds are the field values numeric or are they strings? do you have the correct formatting set for theemoview
-
"The result is; DateDiff is undefined" reason for the message DateDiff is not a valid fr function
-
High roy objects are procdessed top down depending on band type within the band left to right in order of creation
-
hi Roy long time since i've heard from you here is some sample code for shifting objects could be object or band use obp events and you will need oap events as settings will maccumulate shifting a detail h&v var savedy, oldy,oldx:double; …
-
look at the string functions available to you in the designer window