nicocizik
Comments
-
Hi Mark,
I believe this descends from a normal TListView component so it will need to
be sorted as you would in Delphi either using the OnCompare event with the
SortType property or the CustomSort routine.
--
… -
Hi Norman,
My first suggestion would be to update your version to RB 10.09 and re-test.
In my quick testing with a simple merge menu in RB 11.07, FastMM did not
return any memory leaks.
Contact info@digital-metaphor… -
Hi Jim,
Are you certain you are deleting the correct version of RBuilder.ini? This
should be located in the WINSYS (Windows\System32\) directory. Once you
delete it and re-load the designer, what values do the calc dialog se… -
Hi Chris,
You are also going to need to create a new component design control for your
new shape component. See the myChkboxDesign.pas file in the \Demos\RCL\...
directory.
Currently, your component is calling the … -
Hi Chris,
Please either post questions here or send them to
support@digital-metaphors.com, not both.
See the demo located in \Demos\RCL\ for how to create a design package and
install your new component into t… -
Hi Chris,
The native TppShape does not allow altering the radius of the rounded
corners in a round rectangle. It is automatically set to one forth the size
of the smallest side.
Two options...
1. Create… -
Hi Willo,
No, you should not need three separate datasets.
Are your subreports sized to the correct height. When using fixed style
subreports, you need to be sure the subreport component placed in the main
report i… -
Hi Willo,
Yes, this should work. Are you certain each subreport is connected to the
proper dataset? As a first step, try getting a single subreport to print
the correct data first then try adding more. What type of subrepor… -
Hi Alessandro,
Try setting the PDFSettings.ScaleImages property to False.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphor… -
Hi Jeff,
No this will function correctly. I currently have all seven versions of
Delphi/ReportBuilder installed on my machine
in Delphi 7 and Delphi 2010
Comment by nicocizik
February 2010
-
Hi Leon,
One approach is to place a subreport inside the PageStyle band and load a
pre-made template into the subreport before the report is printed.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Rob,
This is not a known error.
First upgrade your version of ReportBuilder to 10.09 and see if that helps
the issue. Contact info@digital-metaphors.com with your serial number for
upgrade instructions.
Hi Rob,
At what point are you getting the error? Is this while previewing a report
or printing/exporting? Are you closing the window by using the Cancel
dialog (dialog that displays the report progress)?
Which dat…Hi Petter,
First be sure you are using the latest version of RB 11 (11.07 Build 2).
Are you able to recreate this behavior with a simple example I can run on my
machine? If so, please send it in .zip format to
supp…Hi Wes,
Gradient fill is not currently a native feature of the shape component.
This is something we are strongly considering for the next version of
ReportBuilder. You can try using the TppPaintBox component to manually draw…Hi Jeff,
Nothing has changed as far as event implementation since ReportBuilder 7.
Did you perhaps upgrade your edition to Enterprise or Server?
ReportBuilder Enterprise or Server, include the RAP feature
( in How To Use OnPrint Events Comment by nicocizik February 2010Hi Júlio,
There is now a patch available for RB 11.07 that fixes this issue. Send an
email to support@digital-metaphors.com if you would like the patch.
--
Regards,
Nico Cizik
Digital Metaphors
Hi Peter,
You most likely do not need to re-install ReportBuilder. The error is due
to the ppSMTPIndy10.dcu file in your library path not being compiled with
the latest Indy source files. Try changing your library path toHi Willo,
TppReport.ShowPrintDialog := False;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Hi Steve,
The following article explains how to replace dialogs in ReportBuilder.
There is also a demo located in the \Demos\5. AutoSearch\4. Custom
AutoSearch Dialog\... directory.
in Parameters Comment by nicocizik February 2010Hi Steve,
ReportBuilder 10 did not include the ability to link parameters to
AutoSearch (allowing the users to enter the parameter values using the
AutoSearch dialog). ReportBuilder 11 does include this feature.
Al…Hi Steve,
1. If you are simply trying to filter your data, you might try using the
AutoSearch feature rather than Report Parameters. Using RB 10, Autosearch
is the only way for RB to ask for a search value and filter the dat…Hi Jesus,
Just tested it with the Preview email button and it worked the same.
procedure TForm1.Button1Click(Sender: TObject);
begin
TppEmail(ppReport1.Email).SMTP.OnStatusChange := EmailStatusEvent;
pp…Hi Jesus.
In my testing with the code below, the status event fired correctly giving
the proper values. I noticed that your event is not a member of the class
that defines it.
uses
ppEmail, ppSMTPMapi;
…Hi Paolo,
Are you certain Times New Roman is installed on your machine? Are you
loading a template? In my testing with RB 11.07, exporting a report with
Times New Roman font displayed text with that font properly.
Hi Bas,
ReportBuilder takes the data as-is in the order the dataset is presented.
If you would like to look ahead at the data being displayed, you might
consider taking a peek at it during the first pass of the report, thenHi Jesus,
I'm a bit unclear by what you mean. Are you referring to the digital
encryption feature of PDF files which can restrict certain abilities?
If so, we are considering that for a later release of ReportBuilder.
Hi Mark,
It is possible to completely replace the RichText Editor to meet your needs
(and all other dialogs in RB except the designer). Similar to the method
used here...
in How to access and hide the MailMerge part of the RichText-Editor? Comment by nicocizik February 2010Hi Peter,
This is not a known issue however I do know that Indy 10 has had issues with
attachments in recent versions. You can trace through the
TppEmail.ProcessAndSend code and the TppSMTPIndy code to see if more than
…Hi Jürgen,
When printing a report from the print dialog, the printer device will always
be created. You can also check (TppReport.FileDevice <> nil) to determine
if the report was then exported to a file.
-- …