nicocizik
Comments
-
Hi Bill,
Thanks for re-posting, I somehow lost track of your original.
As a test try removing ReportBuilder from the equation and load the images
directly into TDBImages on a form. You mention that you are using the Long… -
Hi Dave,
The link below should set you on the right track.
-----------------------------------------
Article: End-User Tech Support
-----------------------------------------
Please understand that Digital M… -
Hi Gabrielle,
Are you a registered user of ReportBuilder or are you using a piece of
software with ReportBuilder built in? ReportBuilder includes many options
to alter a dataset during execution, the best way being the AutoSe… -
Hi Stian,
This should not be an issue. I performed a quick test and created a simple
app similar to what you describe below and the report exported to PDF
successfully. Is there something else you can tell me about your
Hi Stian,
This is not a known issue. In my testing with your exact code posted, I am
able to successfully export to a PDF file.
Which version of ReportBuilder and Delphi are you using? If possible,
please send a s…Hi Stian,
I just noticed that you are using the TppViewer.Report property to access
the report. This is a TppProducer class which is an ancestor to the
TppReport class. Try typecasting TppViewer.Report as a TppReport.
<…Hi Stian,
The DeviceType property expects a string value. Try setting it to 'PDF' and
see if that helps.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Ian,
If you are using Access or SQLServer, try using the DateDiff SQL routine.
Something like the following would work in Access...
Select DateDiff("d", Date_In, Now())...
--
Regards,
Nico C…Hi Paul,
By default the description on the final page of the Query Wizard is the name
of the DataPipeline created. You would need to create a custom wizard in
order to manually alter this at runtime.
Take a look at…This will be included in the next maintenance release.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Tim,
Thanks for pointing this out. We will look into enhancing the new
DataTimePicker feature of ReportBuilder 11 to show an empty date when
initially loaded (if no date is selected) for the next maintenance release.
…Hi Tim,
In my testing with a simple dataset identical code to yours below, I was
unable to recreate the behavior. The ouput of the report matched the search
criteria set in the BeforeAutoSearchDialogCreate event in RAP.
…Hi Terje,
You can use the global ToolImageList object to add images to each TBXItem.
The ToolImageList is simply a descendent of a TImageList. You can either
add images to the list before assigning the index or in line. Some…Hi Terje,
The best way to add menu items or additional menus is to use the method we
use when creating the default Report Explorer dialog. Take a look at the
TppReportExplorerForm.Initialize, and LoadMainMenu routines for how…Hi Rob,
Send an email to info@digital-metpahors.com with your serial number and
purchasing email address and we'll send the information you need to update.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Rob,
We fixed an issue similar to this for RB 11.03. Try upgrading and test with
that.
Report parameters are not global, they are tied to each individual report.
If you would like to use report…Hi Rob,
Are the parameters not showing up when trying to create a search criteria in
DADE or are you not able to access them through the parameters editor in the
designer? If you try editing one of these reports at runtime us…Hi Rob,
Are you creating the parameters using the Parameters Editor? In my testing,
simple adding a parameter to the list gives you the option to search on that
when a search criteria is added. Looking at your SQL code howev…Hi Rob,
ReportBuilder 11 now includes the parameterized query support for Dade. You
will need to create the parameter initially using the ParametersEditor
dialog of the report, then enable and define its AutoSearch properties…Hi Scott,
Rather than use the CreateAutoSearchCritera routine, try using the
TdaSQLBuilder class to create autosearch in code. The new
TdaSearchCriteriaList.AddAutoSearchWithParam allows you to create new
autosearch cri…Hi Barry,
We did not make any changes to the email feature between 11.02 and 11.03.
Note that if you are using Vista and the MAPI plugin, you need to be sure
Outlook is closed on the users machine in order to send successfully…Hi Bas,
I'm not sure when this happened but it seems the ResolveToDataset property
of the "prvItem" TDatasetProvider is set to True in the Interbase/DBExpress
demo. Setting this to False should solve the issue. I will fix th…Hi Andy,
The Windows system settings (including the decimal separator) are stored as
global variable in Delphi. One solution is to temporary override the global
variables and then restore them back. Use a try..finally block. A…Hi Terje,
Which event are you setting these properties? Are you calling Report.Print
or PrintToDevices?
--
Regards,
Nico Cizik
Digital Metaphors
in AllowPrintToFile Comment by nicocizik March 2009Hi Christopher,
You will need to link the two queries on the vendor so they traverse at the
same time in a one-to-one relationship. You can assign the main report to
the first query, and then place a subreport inside the deta…Hi Tim,
There is now a patch available that fixes this issue. Please send an email
to support@digital-metaphors.com to receive the patch.
--
Regards,
Nico Cizik
Digital Metaphors
in Merge Menu Problem Comment by nicocizik March 2009Hi Erich,
When accessing report components in code, try using a report object loop...
http://www.digital-metaphors.com/rbWi…Hi Erich,
The report traverses through each record as the report is being generated.
You will need to use an event such as the DetailBand.BeforePrint to access
the current record being retrieved. An easy way to access a field…Hi Erich,
There are two options...
1. Use RAP to code your event handlers so they stay local to the report.
RAP is included with ReportBuilder Enterprise edition.
in add report-event at runtime (DetailBand1BeforePrint) Comment by nicocizik April 2009Hi Lars,
ReportBuilder simply uses the data that is returned by the query generated.
Try setting Distinct for the detail dataset as well to limit the number of
records returned.
--
Regards,
Nico Ciz…