gordk
gordk
About
- Username
- gordk
- Location
- St.Catherines On. Canada.
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
i would like to see the code from the reports code page. Also where is the memo located that you are printing the variable value? ie which band? Note: there are some cases where it is better to increment a variable in the obp of the memoview rathe…
-
first i suggest you read the usermanual on aggregate functions they are for use in summary type bands footers group footers and page footers column footers and summary bands. 2nd your syntax is incorrect in any given expression you are only al…
-
date is 8/10/2006 and it is still there chage you news group reader settings.
-
look in the binaries news group Den posted a sample a long while back.
-
it works i would suspect you are trying to use it in the wrong event.
-
here is a sample of pascal code for the reports code page. var RunSum: double; //declare variable type could also be extended begin masterdata1OnBeforePrint(Sender); // use obp event of mdband begin RunSum=RunSum+; end; begin runsum:=0; // …
-
add a headerband for the detail2, it may be 0 height ,it will be used to write code in it's obp event to check the engine's freespace. if engine.freespace < somevalue then engine.newpage.
-
When building reports from delphi code you can create events for the internal report script and connect them to objects. here is a sample.
-
srdjos wrote: » Let's go back For you, what does mean composite reports instead of PreviewPages.AddFrom? read the programmers manual on composite / Batch reports
-
What version and build no are you using it works ok for me ver 4.12
-
Please Post in the correct forum for the product you are using.
-
see the main demo under dialogs and script Totals in group header report. you can also find it in the users manual
-
set Name property report.reportoptions.name
-
see my reply to the label accross topic in the fr4 forum
-
no the title band is only once use the page header instead.
-
in the footer store the value in a variable. in the memo of the header use the variable. in the obp event of the memo in the header, or the page header write code to set the memo visible to false. memo1.visible := > 1; also write code to set…
-
vertical output is down one column then starts down at the top of the next column of the matrix. horizontal output is accross then down to the next row
-
are you working with stored ."fp3" files or stored design files ".fr3"?
-
try placing your fields in the memo instead of concatenating [Trim()] [Trim()] []
-
size the master band height to the size of the label height + the gap between labels , use 1 memoview with expresions for each field. write code in the oad event of the memoview to stip empty spaces. [datsetname."Address1"] [datasetname."Addres…
-
write code in the obp of the footer to set the engine cury pos. if engine.cury < value then engine.cury := value.
-
you cannot do this using grouping, you must use normal master detail bands and headers.
-
leave the memoview empty don't connect it to a dataset. assuming engine convert null property has not been changed in the obp event write code to test for empty string and add text to the memoview. if not ( = ' ') then memo2.text:= '[delivery."ST…
-
seethe main demo under dialogs and script, total in group header, the premise is the same This report demonstrates how to show group total in the group header. The report is two-pass report. On first pass the group totals are accumulated in the v…
-
Please post inh the forum for the product you are using and supply more info.
-
in the obp event of the summary band write code to force a newpage. engine.newpage
-
jimmy here is a sample from delphi procedure TForm1.Button1Click(Sender: TObject); var Chart:TfrxChartView; begin frxreport1.LoadFromFile('base.fr3',true); //Chart := frxReport1.FindObject('Chart1') as TfrxChartView; Chart := frxRepor…
-
It's not clear what you aretrying to acheive but you may want to look at the onaftercalcheight event of the band or the onafterdata event of the memoview.
-
when you click on the check mark that just saves the changes you made in the rtf object in the designer. when you click on the save to file button it is saved in the default save dir of the program or if you have included a designer component in yo…
-
compile and run the main demo look at the rtf report under addin objects.