nardmoseley
Comments
-
Sorry, but it is no longer available.
You can contact info@digital-metaphors.com and inquire about getting an
update to the latest release.
-
You would need to add some logic to show the message on the page.
You could try creating a DrawText drawcommand to show the message. The
code below shows how the report engine does this. In your own code, you
can access th… -
On our web site, select RBuilder | Learning ReportBuilder.
-
I suspect one of two things.
1. Try running the RBuilder\Demos\Reports\Demo.dpr application. Preview
and print any of reports in that application and see whether they have
the same problem. If so, then the problem is the p… -
I can send you a patch
Thanks for reporting this. For RB 6.02 with TeeChart 5.02, the
ppIfDef.pas should look like
{$IFDEF VER140}
{$DEFINE Delphi4}
{$DEFINE Delphi5}
{$DEFINE Delphi6}
{$D… -
I will e-mail you a patch that fixes this problem.
-
You should be able to refer to the variable value by
myVariable.Value
-
Hopefully you saved a copy of the version 5 reports.
You need to download RB 6.02 and try opening the version 5 again. The
conversion should work properly.
What is happening is that the detailband.datapipeline assign… -
No. But you can easily create a dialog with these options....
-
DataSet --> DataSource --> DataPipeline --> Report
If any connection in the chain of componenets, then a problem could
result.
Create a simple example report and prior to calling Report.Print, check
tha… -
Sorry, but RB does not currently support BCB.
If we have something to offer in the future, we will make an
announcement at that time.
-
I will try to send it to you. If you do not receive something, then
please let me know an address I can e-mail it to. (Sometimes I try to
send, but the message bounces back to me).
-
1. The code that calculates the size of components,
TppCustomText.AdjustBounds, was slightly modified to improve for
accuracy.
For a wrokaround, try creating a component and setting the height to
0.15, then use copy/… -
Sorry for the delay did not see this post.
1. I am not an expert on TRegistryIniFile so I am not really qualified
to answer the question.
2. I do know that TppIniStorage is constructed such a way as to support
A… -
Works fine when I try it here - although I do not seem to have write key
access to HKEY_LOCAL_MACHINE.
Make sure that you setting the TppDesigner.IniStorageType to
'DevRegistry' and including the UnitDevRWIniStorage in the… -
1. Simplest way to create this would be to descend from the ppRegistry
class and override 2 methods:
TppdevRegistry = class(TppRegistry)
protected
function CreateCustomIniFile(aStorageName: String): TCu… -
I will e-mail you a patch.
-
RB does NOT require the BDE at all. TppDBPipeline does NOT use the BDE.
Please check other parts of your application.
The BDE related code for RB is contained in daDBBDE.pas - the BDE DADE
Plug-in.
<… -
Sorry, but you would need to code something in Delphi or RAP.
The other alternative would be to create a custom RCL component that
does what you need. See RBuilder\Demos\RCL for an example of a custom
component.
1. Make sure that you doing this prior to calling Report.Print.
2. The name must match exactly one of the names from
report.PrinterSetup.PrinterNames[]
Report.ShowCancelDilaog := False;
I do not think this is possible because one package usually 'requires'
other packages, which in turn require other packages. Thus creating a
chain of dependencies.
Try setting Report.PrinterSetup.DelegateCopies to True.
DelegateCopies is a public property of PrinterSetup. When set to true,
it is left to the printer driver to generate the copies (some but not
all printers have this ca…
Try calling Report.Engine.Reset
You are encountering a limitation/quirk of the Windows API. RB uses API
calls to draw to the printer canvas. RB is using a MoveTo, LineTo to
render a line and it is uses PolyLine/Rectangle command to render a
rectangle. These pr…
Set DBPipeline.AutoCreateFields to False.
You should be able to call ppRegisterForm to do this.
1. Register default preview form
ppRegisterForm(TppCustomPreviewer, TppPrintPreview);
2. Register custom preview form
ppRegisterForm(TppCusto…
Thanks for the feedback.
I think the simplest way to handle your requirements for now would be to
create your custom report explorer form - that gives you complete
control. You can basically take the existing report explor…
Check out ppPrintr.pas, search for the TppCustomPrinter.UpdateForm
method.
You could call this method - it is public.
Sorry, but we do not know the cause of this at this time. We'll continue
to research it...