nicocizik
Comments
-
Hi Leon,
Thanks for the update. I'll take a look at this driver.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.comHi Leon,
We have not heard of an issue like this for the latest version of
ReportBuilder.
If you create a simple report containing only lines, are they still not
showing up? Are you able to print shapes or text wit…Hi Shane,
There are two options.
1. You can use Section style subreports to combine multiple reports into a
single one. Simply create a main report with only a detail band. Then
place a number of subreports insid…Hi Larry,
Yes, it is sometimes necessary to update the package "requires" clause based
on which version of DBISAM you are using. We try to keep these up to date
however sometimes a version is released without our knowledge. …Hi Larry,
This may have been a corrupt install. I just checked my installation of RB
11.07 for Delphi 2010 and the files were present. Try upgrading to RB 11.07
and reinstalling ReportBuilder.
Contact info@digital…Hi Larry,
Which version\edition of ReportBuilder and Delphi do you have installed?
You should only have the rbISAMxx.dpk and the rbISAMxx.res in the folder.
--
Regards,
Nico Cizik
Digital MetaphorsHi Larry,
Take a look at the DBISAM demo located in the \Demos\4. EndUser
Databases\DBISAM\1. Native\... directory. This directory includes all the
files needed to connect DADE to your DBISAM data, including a Readme.doc
Hi Santy,
PDF forms are not currently supported in the native PDF device however this
may be something we consider for a future release. I would suggest
contacting Gnostice directly to see if they support this feature. It lo…Hi Leon,
We have not heard of this behavior before. Does this happen with every
image? Have you tried different image formats? Note that ReportBuilder
uses the same code to communicate with every printer driver (which are <…Hi Luke,
When you load a JPEG into the TppImage component, you are basically creating
a TJPEGImage object and assigning it to the ppImage.Picture.Graphic
property. You can then access this property to determine any informatio…Hi Fredrik,
I downloaded the TeeChart version below and installed in on my machine.
Then I ran the RBTeePackageBuilder and received the same output as you did.
I was then able to load Delphi without any issues.
You …Hi Fredrik,
When you run the RBTeePackageBuilder.exe, does the initial dialog indicate
that you have a pro version of TeeChart 8 installed on your machine? Try
re-running the application then let me know what the log file ind…Hi Willo,
If you have a two pass report, you can use the TppReport.AbsolutePageCount
property to determine how many pages the report contains. It is also
possible to display this to the user using the SystemVariable component…Hi Hans,
This has been fixed for the latest release. Please upgrade your version of
ReportBuilder to 11.07.
For upgrade instructions, send and email to info@digital-metaphors.com with
your serial number and purchas…Hi Bas,
When you create a two-pass report, the report engine will by definition run
through each page (allocating space and making calculations) before showing
the first page in the preview window. Then as the user steps thro…Hi Stuart,
This is not a known issue with RB 7.04. From looking at your MadExcept
output, it seems the AV is occurring while trying to free a text component.
Perhaps try simplifying the report to single out the component that…Hi Nicola,
In this case you will either need to create a pass-thru function for RAP or
you can perhaps implement the OnDrawCommandClick event of the image
component and save the image from there.
--
Regards,Hi Nicola,
Use the Picture.Graphic property of the TppImage to save the image.
ppImage1.Picture.Graphic.SaveToFile('MyFile');
--
Regards,
Nico Cizik
Digital Metaphors
in Unload a picture from TppImage Comment by nicocizik February 2010For future reference, please either let us know you are using RAP before
asking a question, or post RAP questions in the RAP newsgroup.
There is now a patch available for RB 11.07 that solves this issue. Send an
email to supp…Hi Stefan,
In my testing with your exact code below, I was unable to recreate the issue
(with AutoEncode set to True or False). Which version of Delphi are you
using? Note that if you are using the AutoEncode feature, you sh…Hi Steve,
Are you using RAP? If so, you need to use the names defined in the object
tree of the code workspace. In Delphi, the components are defined at the
top of the interface section and those names should be used.
<…Hi Steve,
The code you have below will set the detail band's visible property to True
then regenerate the entire report (showing all detail bands). If you need
to limit the number of detail bands shown, you may want to implem…Hi Morde,
In my testing with code similar to the code you have below, I was able to
successfully change the caption of a label before designing.
procedure TForm1.Button1Click(Sender: TObject);
var
lLabel: TppL…Although we are not able to give you any specific timeframes for new
features/releases, we would like to have it this year.
--
Regards,
Nico Cizik
Digital Metaphors
in PDF encryption support Comment by nicocizik March 2010Hi Joe,
Thanks for your feedback. We are considering supporting encryption for PDF
in a later release of ReportBuilder.
--
Regards,
Nico Cizik
Digital Metaphors
in PDF encryption support Comment by nicocizik March 2010Hi Michela,
The DBCalc needs to be connected to a pipeline that is traversed by a report
in order to make a full dataset calculation such as Count(*). For instance,
you would need to place it inside a subreport connected to y…Hi Steve,
Use the Report.ShowCancelDialog property to suppress the Cancel(Progress)
dialog.
--
Regards,
Nico Cizik
Digital Metaphors
htt…>UserName is saved in report calculations, so if it is ones used, I cannot
I'm a bit unclear about this, do you mean RAP? Basically our intension with
the UserName property was to give the report creator a way to define the
Hi Roman,
As Ed mentioned the purpose of the UserName property is to give your users a
human readable name for each pipeline.
I'm a bit unclear about what you mean by the UserName saved in the Report
definition. Th…Hi Max,
When manipulating the printer device while using the Archive Reader, you
need to place all code inside the OnInitializePrinterSetup event. This will
ensure all pages have the same printer information.
It is…