nicocizik
Comments
-
Hi Wolfgang,
ReportBuilder has the capability of generating reports as PDF files however
it does not include the ability to print or view them from within the
product. One option would be to convert the PDF files to a format … -
Hi Fabio,
If you still see this behavior without the pagestyle band, then the problem
must be with another aspect of your report. Which version of ReportBuilder
and Delphi are you using? Are you able to recreate this issue w… -
Hi Fabio,
This is most likely a sizing issue. As a test, try removing the image from
the pagestyle band and see if that is causing the problem. Then try
vertically shrinking the large image a bit and see if the problem persi… -
Hi Mac,
Inside the OnCalc event of the variable, you could loop through the field
text and remove the characters you need before assigning it to the value of
the variable component.
sample psuedo code...
… -
Hi Mac,
The built-in text file device does not currently support exporting memos to
a delimited file. Are you using a third party export device to do this or
perhaps a custom device?
It is on our to-do list to add … -
Hi Mac,
Are you exporting to a delimited text file or a Report Emulation text file?
How are you viewing these text files? In my quick testing using notepad to
view the text file, the control characters are not visible.
<… -
Hi Philip,
I'm sorry but I'm unable to recreate this issue on my machine. Please
provide step by step instructions I can take to recreate it or perhaps send
a small example I can run on my machine that demonstrates the issue … -
Hi Ali,
Sorry, I missread your post. To center vertically, you will want to use the
TCanvas.TextHeight routine to discover the height of the text before
repositioning it based on the height of the band. For information on ho… -
Hi Ali,
I would suggest getting the text width using the TCanvas.TextWidth routine
after the font has been adjusted, then use that information to re-position
the text component based on the band width.
--
Rega… -
Hi Kevin,
You need to include ppGIF in your uses clause.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Jeremy,
Excellent, glad you got it working and thanks for the useful feedback.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-…Hi Jeremy,
Since the group header prints before the detail bands, you will need to find
a way to determine whether there will be any detail bands present inside a
group before the group starts. This could be done by stepping …Hi Andreas,
There is currently no way to automatically "flip" a report 180 degrees
in ReportBuilder.
As mentioned in my previous response, if you are exporting to PDF then
printing, you can utilize the Adobe Reader …Hi Steve,
ReportBuilder does not have a built-in feature to rotate an entire report
before printing. The easiest option for your client would be to utilize the
Rotate Clockwise or Rotate Counterclockwise option available in A…Hi Sheetal,
I'm not clear about what you are trying to accomplish. If you are trying to
keep a running total for each page, you should use the page header and page
footer bands. If you are trying to keep totals for groups, y…Hi Sheetal,
Take a look at the following example on how this should be done.
http://www.digital-metaphors.com/tips/RunningTotalInHeader.zip…Hi Sheetal,
Which component are you using to calculate the Balance value? If for
instance you were to use a TppDBCalc component set to caluculate the sum of
the Amount field, it would in fact keep a running total across all p…Hi Ali,
I'm sorry but I do not understand the question. Are you experiencing a
specific problem displaying an image in the PageStyle band?
--
Regards,
Nico Cizik
Digital Metaphors
in Set background image covers the whole page of report Comment by nicocizik August 2008Hi Cody,
Inside the Report.PreviewFormCreate event, you can set the
Report.PreviewForm.Width and .Height properties to any size you need.
--
Regards,
Nico Cizik
Digital Metaphors
in Resizing PreviewForm Comment by nicocizik August 2008Hi Ian,
Pricing information can be found at the following web page. Feel free to
contact info@digital-metaphors.com if you have any upgrade or ordering
questions.
Hi Edward,
This problem can manifest itself in a number of ways, a few of them specific
to the Windows Vista operating system. First be sure you have proper access
to your printer and video drivers. Next I would suggest down…Hi Abdullah,
Sorry for the delay in this response.
Depending on your needs, you may be able to use the CrossTab feature of
ReportBuilder. Take a look at the CrossTab demos located in the
\RBuilder\Demos\2. CrossTab…Hi Andrew,
If you are exporting to a file type (i.e. PDF) using a device plugin such as
the built-in PDF device, there is no concept of copies for the report. The
easiest way would be to simply print the report twice (perhaps…Hi Andrew,
Are you exporting the report to PDF using the build-in PDF Device? If so,
the copies property will not have any effect on the output. To print two
copies of a report to PDF, you will essentially need to call Repor…Hi Bruno,
This is not a known issue with ReportBuilder. If you set your library path
to \RBuilder\Source and set Delphi to stop on exceptions, where in the RB
source does the problem occur?
--
Regards,
<…Hi Maris,
When using a DBChart with ReportBuilder, the data needs to be retrieved from
a pipeline. This is the reason that the summary option is not available for
charts created in ReportBuilder. There are however options to…Hi Eric,
If you are exporting to a Delimited Text file, you need to be sure the Save
property of each text component you wish to export and the Save property of
the band it resides in is set to True. The easiest way to set up…Hi Patrick,
Yes, there are passthru properties available on the preview form that give
you access to each button in the main toolbar of the preview window.
uses
ppPrvDlg;
TppPrintPreview(ppReport1.Previe…Hi Philip,
Take a look at the following example. This shows how you can edit a
template as text from blob data stored on your DB.
htt…Hi Philip,
I apologize if I was confusing. When the template is loaded, it is looking
for an event named ppReport2.OnPreviewFormClose which is an event of the
actual report object. My guess is that when the template were ori…