gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
use a separate memoview left aligned turn off allow expresions write code in obp of band to test datafield value and place appropriate text in the second memoview.
-
see the programmers manual. showreport prepares the report and takes you to the preview window print must be preceded by prepare or there is nothing to print.
-
Why go to all the trouble of hiding bands? just parameterize your query and select only what you want.
-
Separation of runtime and IDE designtime code. any of the components on the fr3 pallette tabs must be either placed or added to the uses clause of the form.
-
you probably forgot to add the tfrxbarcode component to the underlying form or add it's unit to usesclause.
-
aggregate sums are designed to work with correct footers. create a variable at the start of the code page var mytot:extended; initialize to 0 in the empty begin end block of the codepage mytot := 0; in the obp event of masterdata or oad event…
-
[#TOTALPAGES] should be [TOTALPAGES#]
-
typically in obp event of mdband in report if = 0 then bandname.visible := false else bandname.visible := True;
-
set the allow split property of the band containing rtf object.
-
see the main demo under scripts and dialogs see the grouptotal in header report. report must be 2 pass.
-
compile and run the main demo, it's reports cover all the items you mention. Also read the user manual and build its examples to gain experience, the most important concepts to learn, are where and when the various band types print(output) to the…
-
set report options name property to show/change the name.
-
if you want to change a bands position at run time write code in obp event for band to modify curx or cury position. read the user manual chapter on using the engine object.
-
when the system variables page, page#, totalpages etc.. don't produce results expected you must use your own variables to track them and write code in appropriate band events to increment them and reset them.
-
sorry my mistake, you can use the sum function with a condition but you need the band name. of the band where the datafield originally appears. ie [SUM(= 'US',Band4)]
-
the sum function is for numeric values use count function see the user manual on aggregate functions.
-
set the display format property for the memo to tdatetime and modify the format string to suit hour:min:sec:msec am/pm, month day,year msec can be 3 digit as below hh:mm:ss:mss am/pm, mmmm dd, yyyy
-
see all the replys to the same topic you started in the news group
-
ver 3.20 is , the vcl designation is just how we differentiate between versions of 2.5 vcl, clx etc.. version3.20 is a vcl, the reason i suggested you start with ver3 is to save the work and pain of migrating from 2 to 3 at a latter date, particula…
-
check that you have preset all the required properties of the export component before calling it.
-
When using the tfrxuserdataset you must set it's properties and write code for it's events.
-
IIRC there is no right to left property for bands so you will probably need to use code to control the bands positioning, see the user manual on using the engine object to control the bands curx and cury props.
-
Sorry the language of this forum is English. please repost.
-
set the bands stretched property and the text objects stretched properties also remember that if you have stretchable text objects they cannot be placed one above the other vertically the lower of the 2 must be placed in an attached child band.
-
why? what are you trying to do?
-
Hi pixelpointer go to the binaries newsgroup ill post a modified version of 45.frf from the main frdemo for you the subject will be modified frf for pixelpointer.
-
start of report code page declare var of type required ie var curtot : extended; add a memo beside the one containing price with [curtot] in obp event of band write code curtot:= curtot +;
-
Use the loadfromfile or assignfromfile methods, either take a string in the form of 'path&filename'. decide wether to use an frxuserdatset to control the band movement, or to just set the rowcount property of the band,(number of times it needs…
-
Yes i am running d2006 pro
-
this will depend upon the external data linkage relationship of the tables that are connect to the frxdbdatasets, or if using internal frxdataengine controls, the linkage you set up between tables/queries. You can also use a joined query to retreive…