gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
yes you could in obp event of second header if engine.cury < value then engine.cury := preset value;. generally i usually use frames of memos for horizontal lines and some the shapeview for diagonal lines and shapes. when the output page is alw…
-
Seems possible. I expected you would be using queries. BTW the right hand side the 2 subreports you show could possibly be 1 subreport using 2 masterbands and 2 headers. you can also use engine object to set and control curx cury props for bands …
-
The memoview supports limited html formatting tagstags
-
the layout is great for a general layout,however their is a number of ways to try and accomplish this as it is not as simple as it appears. in mamy cases I have found that when sample data is supplied i usually find something that was overlooked. …
-
glen can you post some sample data in the binaries newsgroup.
-
is the a6 paper size defined in the printer? not all printers have a6 and may require you to define a custom page.
-
there is a demo in the binaries newsgroup. you can save both .fr3 report designs and output .fp3 to blob fields
-
fixed as of 4.4.5
-
since you have to embed the fonts it seems like your pdf viewer cannot find the fonts on your operating system.
-
seems like you are running in debug mode and the frlib was not compiled with debug info. read the programmers manual chapters on working with categorized variables. when passing string values, the value passed into the variable must endup as 'test'…
-
try setting the reports reset pagenumbers property, if that doesn't work for you use your own variables for page numbers and totals.
-
set the modalresult prop of the 2 buttons. in the onactivate event of the dialog page you can set which groupbutton is set as default. once you gain a bit of experience, you will find that you can use 1 memo containing iif function to substitute w…
-
But i dont what?
-
yes visit steve forbes site http://www.ozmosys.net.au/download/fr4dbi.zip
-
go to the fast report binaries newsgroup. see the topic self contained label report posted by me on 11/8/2006
-
set the memos display format properties customformat string or use inline formatting see the user manual.
-
Be careful as to which event of which object you write your code in. also keep in mind that it is sometimes usefull to have a header/footerband of zero height so that you have the events of these bands available for processing code to make other th…
-
a lot depends upon where you are calling the report from on repeated calls and if the form with the date picker is available to the report at that time or has a value. a more reliable method would be to create a variable in the report and use it in…
-
IMHO a column footer is designed to print at the bottom of the page before a pagefooter usually it is used to handle page column totals. What you probably need to use is an unattached childband and code in the oap event of a prior band to use the…
-
read the developers manual chapter on adding functions and function libs.
-
tariq you will probably have to use some variables and you may have to use the decode time function to sum the individual word members of the time value.
-
memos do not have column or row properties only bands. what you probably want to do is control the output by altering curx or cury positions. read the user manual chapter on using the engine object.
-
read the user manual script section using the engine object.
-
in th obp event test the value of the field if = 'A1' then picture1.picture.loadfromfile('C:\A1.jpg') else picture1.picture.loadfromfile('C:\A2.jpg'); or if the data field contains the path & filename picture1.picture.loadfromfile();
-
as i stated make sure your code for the memo is in an if engine.finalpass then block. then make sure that the result of expression calculation is in the correct form for the property you are trying to place it in. since you are using the text pro…
-
you probably need to make your report double pass so that you gather the aggregate value on the first pass then you write your code to replace the memos text in an if engine.finalpass pass block.
-
use the obp event of the pictureview and write code using the loadfromfile method IIRC picture1.picture.loadfromfile('path&filename');
-
possible bad install since you did it manually. ie fr3 not deinstalled before fr4 installed. project report built with old version, without more info have no idea.
-
in delphi code before loading the report set values for the props of the desired export component.
-
user manual, creating reports, topic displaying expressions with the help of the text object. select a text object go into edit mode use the expression builder to build the expression in most cases this will set the correct braces for you. the r…