nicocizik
Comments
-
Hi Pascal,
When loading subreports dynamically, you need to load them before
Report.Print is called to get the dataviews to merge with the main report's
dataviews. When loading the reports during report generation such as in th… -
Hi Dimitar,
If your components are showing up correctly at design time, they must be
registering correctly. Be sure you are including the correct units in the
"uses" clause of your application and that your library path is upda… -
Hi Farid,
Unfortunately old versions of ReportBuilder are no longer available to
download. Please contact sales@digital-metaphors.com for information on
upgrading your version of ReportBuilder.
--
-
Hi Jefferson,
It is not recommended that you run an older version of ReportBuilder with
Delphi 7. Reportbuilder 5 was not designed to work with this version of
Delphi and you will most likely run into a heap of problems.
<… -
Hi Steffen,
The TppPopupMenu menu descends from the TPopupMenu class. If you would like
to create a submenu for a popup menu, you will need to use the TMenuItem.Add
method on one of the parent menu items. See the Delphi help f… -
Hi John,
ReportBuilder uses the Delphi function FormatFloat when handling the display
format of numeric data types. The reason the display format you entered is
not working as expected is that your data field must be a text f… -
Hi Ciro,
Sorry, I'm having a bit of trouble understanding what you need. If you set
the SaveAsTemplate property of the TppReport object to True, ReportBuilder
will ask your user if he/she wants to save the report if the origi… -
Hi,
My recommendation would be to save this default report as a report template
file (.rtm) using the Report.Template property settings. You can use RAP to
keep all the report procedures local to the template. Then whenever … -
Hi Valerie,
Unfortunately ReportBuilder does not currently support any 2D barcode
formats. I am not aware of any third party components that produce a Data
Matrix barcode but you may be able to find a Delphi component that wi… -
Hi Carsten,
I'm a bit unclear about what you are trying to accomplish. Perhaps a bit
more information on what you would like to happen will give me a better idea
of how to help you.
--
Regards,
Nic… -
Hi Jack,
The TppPopupMenu class has now been moved to its own file ppPopupMenus.pas.
---------------------------------------
Article: RB 9 Architecture Changes
---------------------------------------
Report… -
This question has been answered in the Devices newsgroup. Please do not
crosspost.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-met… -
This question was answered in the General newsgroup. Please do not cross
post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metapho… -
This question has been answered in the General newsgroup. Please do not
cross-post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-me… -
Hi Vincenzo,
Unfortunately when the TextSearchPreview window was designed, the sataus bar
was not properly exposed as an editable component. We will take a look at
possibly enhancing this for a later release of ReportBuilder.… -
Hi Vincenzo,
Are you using the MDI demo code? If so, you will notice in the
TfrmMDIParent.spbPreviewClick routine, the preview WindowState is set to
wsMaximized. Changing this should give yout the effect you are after.
… -
This question was answered in the General newsgroup, please do not cross
post.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphor… -
Hi Sebastian,
Again, try this at runtime and see if you can track down where the AV is
occuring. Take a look at the CreateDefaultFields routine in the
TppCustomDataPipeline class and see what could be causing a problem in you… -
Hi Sebastian,
Design time bugs can be tricky to track down. My first suggestion would be
to see if you are able to successfully change a field at runtime in Delphi
code. If this does not give the same AV, you will need to st… -
This conversation will be continued via email.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
-
Hi Sebastian,
The component editor of the DataPipeline is updated when the PropertyChanged
routine is called. If you take a look at the TppCustomDataPipeline class,
you will see that PropertyChanged is overridden. I believe … -
Hi Ruediger,
The MyCheckBox is the only demo we have to demonstrate the creation of
custom components for ReportBuilder. You can also take a look at the
RichText and BarCode components in the RB source for other examples of <… -
Hi,
Please use your full name when posting to these newsgroups.
There is no built-in hyperlink enabled component in ReportBuilder however
you can assign the OnDrawCommandClick event to make one clickable inside the
… -
Hi Trevor,
With the new architecture, it is very simple to add a button to the front or
back of the Preview Toolbar. If however you need to insert a button inside
the current buttons, you will need to override the CreateToolb… -
Hi Trevor,
Yes the toolbars and menus have changed drastically since RB 9. I would
suggest first copying the entire CreateToolbarItems routine from the
TppPreview class to your overridden version inside your custom previewer … -
Hi Peter,
Take a look at the myChkboxDesign.pas file located in the
\RBuilder\Demos\RCL\... directory for an example of how to manipulate the
popup menus for a custom component.
--
Regards,
Nico Ciz… -
Hi Christine,
- RB 9 introduced a new RCL architecture, here is an article with details...
---------------------------------------
Article: RB 9 Architecture Changes
---------------------------------------
… -
Hi Christine,
I'm a bit unclear which property is empty. For your new TDrawHyperlink
component, I would also recommend creating a new drawcommand that also
contains the HyperlinkText property. Then you can assign the
d… -
Hi Sidney,
Which version of ReportBuilder are you using? Where exactly are you setting
the Duplex property?
ReportBuilder does not directly communicate with your printer. It uses the
Windows API which then is read… -
Hi Jeff,
Although we have not tried creating a component like this it should be
possible.
Your component would probably need to manually access the dataset and
compile lists of the available tables and fields the us…