nicocizik
Comments
-
Hi Ruud,
Simple MAPI does not support the FromAddress or FromName properties. These
values are set in the Outlook profile the email is being sent from. If you
would like to define these values, I suggest using a direct email… -
Hi Jeroen,
Since ftCustom is not a native file type option of the Print To File dialog,
it should not be used with it. Once you close the dialog, the delimiter
type will be reset to the value that is set in the dialog. … -
Hi Jeroen,
We were not aware of the change in Excel to only support semicolon separated
values. We will see about adding a new delimiter type to the Text Device
for a later release of ReportBuilder.
The ftCustom se… -
Hi Lianfeng,
RB 12.02 fixes this issue. Please upgrade (info@digital-metaphors.com).
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digi… -
Hi Ashwin,
Do this by updating the value of another variable inside the original
variable's OnCalc event. Say for instance you have a variable (Var1) in the
detail band and would like to calculate its sum in the summary band … -
Hi Sara,
I'm a bit unclear about which features you are using. Are you trying to set
up an Autosearch dialog that allows for a list of search items like in the
demo located in the \Demos\5. AutoSearch\3. AutoSearch Field to S… -
Hi Jeff,
I apologize but we are not experts with TeeChart. We simply provide the
wrapper to allow TeeCharts to be added to reports. For a more extensive
answer, you might try contacting Steema support with these questions.Hi Patrick,
Thanks for the feedback, we will consider adding this natively for a
later release.
With the code below, you are hard-coding the amount of space that will
be scrolled each time the mouse wheel changes. …Hi Dominique,
For future reference, please send all attachments to
support@digital-metaphors.com instead of attaching them here.
I'm sorry, I thought you were using the built-in previewer rather than a
customized Tp…Hi Bernaert,
Which version of ReportBuilder and Delphi are you using? Are you certain
the Preview window is the active window on screen? Mouse scroll inside the
Preview is supported for later versions of ReportBuilder.
…Hi Josef,
This is not a known issue with RB 12.02. Does this happen with every report
previewed or just certain reports? Are all the customers that receive this
error using the same printer?
--
Regards,
Hi Kevin,
I will take a look at this however I believe as a rule of thumb you want to
keep a separate parameter for each search criteria. This keeps things
separated and easy to understand as well as avoids conflicts like the…Hi Jason,
Thanks for the information.
The way I understand it, this is what happens so far.
1. The user selects a report.
2. They are then asked for details about the report.
3. The report previews/prints.<…Hi Jason,
I have a few questions about what you are trying to accomplish.
1. Are you certain the Report.AfterPrint event is firing? If you are
loading templates from the ReportExplorer, you need to re-assign all eventHi Rodger,
Yes, printing from the preview will prevent the exception from being
intercepted.
Another option would be to use a report event such as the
Report.OnPrintDialogClose to first check if the file is open, th…Hi Rodger,
In your application with the try...except around the Print command, are you
then receiving two messages when you run from a stand-alone exe? In my
testing, I am just getting a single message (the ShowMessage that I…Hi Rodger,
What exactly would you like to happen in this case? Would you like your own
personal message to display or would you like the user to simply see no
error and move on? I assume you have something like the following…Hi Rodger,
I'm a bit unclear about what you mean by "crashes my app". Does your
application stop working and quit or are you getting an EFCreateError or
EPrintError exception. Getting these exceptions is the default behavior…Hi Rodger,
1. The ComboBox in the existing print dialog is simply a TComboBox. See the
Delphi help for how to manipulate it's values. The best place to access
this component would be inside the OnPrintDialogCreate event of t…Hi Rodger,
1. You can use the Report.XLSSetting.ExportComponents property to determine
which components you would like to allow your users to export to Excel.
2. ppRegisterDevice and ppUnRegiserDevice are global function…Hi Rob,
Is the image embedded inside the RichText or is it separate image component
on the report? If possible, please send me an example of this that I can
run on my machine and I'll take a look at it for you. Send the exam…Hi Bora,
This is not a known issue with RB 12.02 nor have we every seen anything like
this in the past. Please send a simple minimal example that demonstrates
this issue that we can run on our machines in .zip format to
This is a multi-part message in MIME format.
Hi J-Pierre,
The XOrigin and YOrigin properties are not part of the TSeries ancestor.
You need to typecast the series as a TBarSeries like you would in Delphi for
it to compile correctly in RAP.
TBarSeries(TeeChart1…Hi Rodger,
There is a patch available that solves this issue. Send an email to
support@digital-metaphors.com and we'll get it to you as soon as possible.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Rodger,
This is not a known issue. If you would like you can send us one of the old
templates and we can try it here.
The easiest way to alter the save order is to use the Print To File dialog
by selecting File …Hi Rodger,
Are you able to reproduce this behavior with a simple example we could run
here? If so, please send it in .zip format to support@digital-metaphors.com
and we'll take a look at it for you.
--
Regard…Hi Peter,
You are correct, my original solution would not work when paging backward
through the report. I believe the issue is the event you are using rather
than the fact that you are using a two pass report.
Try …Hi Peter,
The PrintPosition is the actual position of the band on the page. Setting
the HeaderBand's PrintPosition to 0 on the first page will overlap the
TitleBand. Perhaps try something like the following to avoid that