nardmoseley
Comments
-
If I did not think there was a high probability that the latest release
would solve your issue, then I would not suggest downloading the trial and
testing it.in Why Images/Barcode print completly black??! Comment by nardmoseley December 2004
-
The image rendering has been improved since RB 7.03.
Try downloading a trial version of RB 9 for D7 and perform the same test.
(Backup your existing installation and reports prior to installing RB 9.)
-- … -
Try setting DBText.SuppressRepeatedValues to True. You can also specify
DBText.ResetGroup. See the online help for DBText SuppressRepeatedValues for
more details.
--
Nard Moseley
Digital Metaphors Co… -
RB 9 includes support for borders - that is one of the new features.
From the Report Designer you can select the DBText component and then use
the Borders button on the format toolbar to turn on the Border. You can have
a … -
As a test I installed RB Ent 9.01 to a Win2k and a WinXP machine, but cannot
reproduce the issue.
Delphi 2005 has a new help system - MS Help2. To integrate into the help
system requires a .js file to be run. See RBuilder\… -
There is not enough information here for me to determine what is happening.
If I were debugging this problem, I would add RBuilder\Source and
Delphi\Lib\Debug to the Delphi environment library path. Then place a stop
in th… -
There are two options:
1. Create a custom TppPreview plug-in class and register it with
ReportBuilder. TppPreview is used by the built-in preview dialog and the
report designer. See RBuilder\Source\ppPreview.pas. The TppPr… -
Try...
Report.AutoStop := False;
Report.PageLimit := 2;
Report.DetailBand.PrintCount := 5;
That should generate a 2 page report with 5 detail bands per page.
--
Nard Moseley
Dig… -
In general all of the reports and subreports should be loaded prior to
calling Report.Print. I do not know how this was working in RB 5.
I recommend that use multiple subreports - one for each layout. Load the
subreport la… -
1. It is against the newsgroup guidelines to post attachements to the
newsgroups. Click on this link, scroll to the bottom and review the
guidelines. Thanks in advance.in AV in kernel32.dll with XP manifest file Comment by nardmoseley December 2004
-
You can check out automated qa, I think they may have a free tool that you
can download, but I have never used. In my opion, a good memory tool and a
good profiling tooler are worth the money. www.automatedqa.com
For testi… -
Modify the Delphi library path from RBuilder\Lib to RBuilder\Source and then
try running the application under a tool that can check for memory and
resource leaks.
If you have any event-handler code, then as a test try com… -
I have seen this happen before with ADO related applications (RB and
non-RB). You do not state whether you are using ADO, so this is a guess.
Perhaps when you try to open the report it tries to open the DataSet and
either the da… -
I think you may have a corrupt installation. I installed RB 9.01 to Delphi 6
on W2K and have no issues.
--
Nard Moseley
Digital Metaphors Corporation
www.digital-metaphors.com
-
Can you reproduce the issue?
When the right mouse button is clicked while positioned over a component,
then a popup menu for the component should be displayed.
If you can reproduce the issue, please provide steps so … -
Here are a couple of examples that you can download.
1. Create a RAP global procedure in code
www.digital-metaphors.com/tips/CreateGlobalProc.zip
2. Create a RAP global variable in code
www.digital-m… -
You are using a very old version of RB. Based upon your description, I am
guessing that for the user account under which the app is executing, there
are either no printer drivers installed or the app does not have full
security … -
You can create a custom preview plug-in that adds a new button. Here is an
example that I created. In the example a new button is created on the left
hand side of the viewer toolbar. It can be used to toggle the drill down
expan… -
1. Make sure that Report.DataPipeline is assigned to the JITPipeline
2. Try adding some code to close the pipeline prior to setting record count:
plRpt.Close;
plRpt.RecordCount := Pages.Count;
ppProdRpt.De… -
You cannot use the OnGetText event to increment a variable. The OnGetText
event fires too frequently.
You also cannot use the OnCalc event of a Variable to control a group,
because the timing is too late.
For a … -
Try the following:
1. Add a TppVariable to the report.
2. Create a Group on the TppVariable.
3. Add a Line to the GroupFooter
4. In the Variable.OnGetText event code
if myDataPipeline['Fie… -
A report or childreport will traverse the datapipeline to which it is
attached. In this case, AutoStop should be set to False.
For a report or childreport that is not connected to any datapipeline, there
are two behaviors.… -
That feature has been deprecated and should no longer be used.
To model a master/detail report, add a subreport to the detail band of the
main report. This is covered in the Developers Guide tutorials. For
examples, check … -
For each of the detail DataPipelines set SkipWhenNoRecords to False to
specify that the master should be included in the report.
If you are using the ReportDesigner's Data workspace to create query
dataviews, then double-c… -
Thanks for the feedback. Perhaps we should add a warning dialog.
I have McAfee installed on one of my machines and it displays a popup dialog
asking me whether to allow the script to run.
Here is an article with more… -
Some options:
1. Use TppVariable components and the Variable.OnCalc event. TppVariable
component save/restore their intermediate results for each page to an
internal cache. Thus, they avoid the issues you describe.
Make sure the data linking relationship is defined properly. ReportBuilder
supports two types of data linking.
------------------------------------------------------
Tech Tip: Linking SQL Queries for Master/Detail D…
1. This post is way too long. Ask specific questions. Best way to
illustrated a situation is to create one or more simple examples and send to
support@digital-metaphors.com and let us examine it. Keep examples focused
a…
Try something like the following...
uses
ppPrintr;
ppPrinter.PrinterSetup := myReport.PrinterSetup;
if ppPrinter.ShowPropertiesDialog then
ppReport1.PrinterSetup := ppPrinter.PrinterSetup;<…