nicocizik
Comments
-
Morten,
Try disconnecting you event handlers and see if that changes the behavior of
the viewer. If this does not change the results, please send a small
working example in .zip format to support@digital-metaphors.com and we'll… -
Hi Jack,
I tried what you described below and could produce no error. This could be
caused by an error in your installation. Please verify that the date on
your current ppUtils.pas file is 03/06/19 1:25pm. Feel free to send a… -
Hi Jack,
I tried running your code as well and was unable to recreate the error. I
ran a diff on the ppCapitalize code you sent and the code I use and they
seemed to be identical. Please send a small running example that re-cr… -
Jack,
Which version of ReportBuilder are you using? PpCapitalize was updated in
ReportBuilder 7.02 and does not have this issue any longer.
--
-
Jeff,
Glad you found a solution. The BackGroundPrintSettings should all be set to
False by default. They may have been loaded with a .rtm file that saved
them down at an earlier time.
--
-
Philippe,
When ReportBuilder tries to make a connection, it will look for the database
it was built with. If it cannot find the correct one, it will create a
default ADO connection and use that. You need to be sure that the da… -
Allan,
Every time you generate the report, it will refresh itself. Be sure that
your data is not being changed at any time during generation. If this does
not help, please send an example to support@digital-metaphors.com and w… -
Philippe,
You will need to sum the datafields using TppVariables only and then use the
CalcOrder property. The order of the OnCalcs is not dependent on the
z-order.
--
-
James,
You can "scan" the report for certain components using a Report Object Loop.
Then you will need to check if each component is DataAware by using the
TppComponent.IsDataAware routine.
---------------------------… -
James,
Sorry, but subreports are not supported when printing to a text file.
--
-
Bjarne,
Try generating your report to a text file and making sure the text file
looks correct before sending the text file to the printer. Below are a
couple articles that could be helpful.
--------------------… -
Bjarne,
Sorry, but there is no way to override this functionality. Try turning the
TppRegion's border off and placing a static control (ie. rectangle) around
the components you need separated. This will give the illusion of a… -
Thiago,
-----------------------------------------------
Article: Printing to Dot Matrix Printers
-----------------------------------------------
Dot matrix printers are natively line and character based. Most dot matr… -
Hi Vinnie,
You need to set the TppDesigner.Position to poDefault so the designer window
will not return to the center every time you reload it. This is a published
property of the TppDesigner so you can access it in the Object … -
Hi Vinnie,
Please send a small example to support@digital-metaphors.com and we will
work on a solution for you.
--
-
Hi Philippe,
Thanks for bringing this to our attention. This tip is strictly for users
of ReportBuilder prior to Version 7. To clear the metadata cache in RB 7,
you will now need to use the global object gMetaDataManager using… -
Oscar,
Follow the link below to see an example that should help you with your
project. This example similarly gives the number of bands per record and
prints them left to right as you need.
in Columns Comment by nicocizik June 2003 -
Stuart,
Why do you need to find the height of a TppMemo? Check out the BottomOffset
and ShiftRelativeTo properties and see if they can help you before trying to
obtain the memo height information.
--
-
--------------------------------------------
Article: Troubleshooting Lost Event Handlers
--------------------------------------------
Let's assume you have created a report in Delphi and assign an event
handlers to the OnP… -
Tarun,
Check out Demo #124 in the \RBuilder\Demos\1. Reports\... directory
(dm0124.pas). This gives a good example of controling the pages sent to the
printer.
--
-
Irek,
You will need to use Section style Subreports to hold each copy of your
invoice and be sure the that ppSubReport.ResetPageNo property is set to
True.
--
-
Hi Fernando,
The toolbar architecture for RB 10 has been changed. Take a look at the
following example on how to access and customize the toolbars and menus in
the RB 10 designer.
in ToolbarManager property in designer Comment by nicocizik September 2006 -
Jonathan,
Be sure you have the ppDsgner unit included in your 'uses' clause.
--
-
Alex,
Sorry about that. You can see a good example of how the OnLoadEnd Event
works in the myEURpt.pas file located in the \RBuilder\Demos\3. EndUser\1.
Report Explorer\... directory.
For help with the DADE classes, … -
Alex,
The OnLoadEndEvent is available in ReportBuilder 6.03. It is publicly
assigned, not published so you will need to assign it programmatically See
the code I sent you before for an example of this.
--
-
Alex,
You can access a particular group object by using the Report.Groups array.
Check out the article below on creating a group in code. You should also
check out the RBuilder help under TppGroup for more information on how
Alex,
You will need to use the OnLoadEndEvent to access the SQL statement. Below
is a link to an example that shows how this can be done.
…