nicocizik
Comments
-
Hi Joe,
Which font/size/style are you using? I just tested with Arial, 12, Bold and
the results were identical. This could be a printer driver issue. Be sure
you have the latest update for your driver installed. Also, try pr… -
----------------------------------------------
Article: Can ReportBuilder output reports in
HTMl, XLS, RTF, PDF etc.
----------------------------------------------
There are three ReportBuilder add-on pro… -
Hi Tom,
As far as I know, the digital-metaphors.public newsgroups are open to
Tamaracka searches.
--
-
Hi Bobby,
Try placing Report.PreviewForm.Close inside the Report.OnPrintingComplete
event. This will close the preview form after you print.
procedure TForm1.ReportPrintingComplete(Sender: TObject);
begin
… -
Hi Larry,
One way you could try would be to traverse your tree structure ahead of time
and build an index of the nodes to be printed. You can assign each node a
unique id and place them in a TStringList object. Then using a JIT… -
Hi Graeme,
I am having a little trouble understanding the layout of your report. Do
you have a subreport inside a region in your detail band that traverses
through the expenses? If possible please try to create a small example… -
Hi Massimo,
The DBCalc does not have a bug that we know of. In some cases, it is better
to use variables rather than a DBCalc depending on the design of the report.
If possible, please send a small example demonstrating the iss… -
Hi Massimo,
Instead of using DBCalcs, try using TppVariables instead. Place a variable
in the detail band and in its OnCalc event update the value of another
variable in the footer after pulling the data directly out of the
Hi Sergey,
Depending on the complexity of your report, you can set the
TppDetailBand.PrintCount property to only show a certain amount of records
per page. You will need to be sure the DetailBand is set to phStatic to get
…Hi Bill,
In my testing I was able to get the PageLimit property to work correctly
from the TppViewer. It also printed the correct pages. Below is a link to
the test program I created. Let me know if I'm completely on the wron…Hi Bill,
You can get access to the Report object from the viewer by type casting the
TppViewer.Report object as a TppReport. Something like the following:
(TppReport(ppViewer1.Report).PageLimit := 100;
If you p…Hi Bill,
I created a quick example that does what I think you are trying to do. Be
sure you set the GroupFooter to phDynamic and the shape to
StretchWithParent. Hope this helps...
in Columns Comment by nicocizik October 2003Hi Alex,
Are you loading a template as your report? Be sure your template was not
created in landscape mode before you load it. If you still have an issue,
please send a small example in .zip format demonstrating the problem t…------------------------------------------------------
Article: TroubleShooting: Report Prints Endless Pages
------------------------------------------------------
Occasionally, we have customers state that their reports are in …Hi,
Try adding ppChrtUI to your 'uses' clause.
------------------------------------------------------------
Article: Controlling the End-User Environment
------------------------------------------------------------
Hi Steve,
There should be no reason you can't change the PrintHeight of the detail
band. Is this property disabled? Please send an example of this behavior
to support@digital-metaphors.com and we'll try to resolve the issue fo…Hi Felix,
Check to see that your printer driver is the latest available. This could
also be due to a corrupt install of your printer driver. Are you able to
print correctly from another printer?
--
Hello,
You can access the text font size by using the TppLabel.Font.Size property.
Other than this, there is no other way to increase the size of a TppLabel
component.
--
Hi Doug,
For future reference, please post questions as new posts.
You can access the band objects of a subreport by using the
Subreport.Report.Bands TList property.
Subreport1.Report.Bands[i];
--
Hi Maxim,
Thanks for the suggestions.
--
Article: Convert Crystal Reports to ReportBuilder.
--------------------------------------------------
We do not have any automated conversion from Crystal Reports. However, most
customers find that
converting existing repo…Hi Steve,
Try using the OnGetCaptionText event to monitor what values are being
entered into each cell and chang the output accordingly.
Check out the crosstab demo 127 located in the \RBuilder\Demos\CrossTabs\…---------------------------------------------
Article: Forcing a Page Break
---------------------------------------------
Question:
How can I force a page break occur based upon
a condition calculated at run-time…Hi Isi,
The easiest way to do this would be to create a new dataset that
pre-processes the count of records you are traversing and displaying that
value on your report. Since the count wil be pre-processed, you will not
ha…Regine,
You should not use the first pass to make any calculations or alter the
report if you plan to do so if the second pass as well. This will usually
cause problems in the generation process. You will also not be able to f…----------------------------------------
Article: .Net ReportBuilder Support?
----------------------------------------
Digital Metaphors is very excited about the .Net platform and Delphi for
.Net.
The Digital Me…Hi Brian,
RAP (Report Application Pascal) comes with ReportBuilder Enterprise edition.
You can try downloading a trial version of RB 7.03 Enterprise and run
through some of the RAP turorials and demos to see if this is a good
Hi Brian,
It looks as though when you load your second report, the event handlers from
the first one are staying connected and when the event fires for a label
that exists on the first report and not on the second, the program c…Hi Chris,
Sorry, but there is no built-in way to access the clipboard contents in
ReportBuilder. You may need to use a Delphi function to accomplish this.
--
Hi Massimo,
Rendering a report to a text file and/or matrix printer is much different
than rendering it to your screen. You will need to be sure each line on
your report is positioned so that it can be exported to a text file a…