nardmoseley
Comments
-
From Delphi, select Tools | Options and check the Package and DCP output
library options. By default Delphi likes to put them in interesting
locations. I always make sure I delete the defaults and then it will
generate the DC… -
I recommend using the DBPipeline to make a data driven report.
Report --> DBPipeline --> DataSource --> DataSet
Use DBText components to connect to a DataPipeline and DataField.
When Report.DataP… -
For examples of using Section style subreports, check out the main reports
demo installed with the product and the Developers Guide tutorials.
If you have a report that generates an infinite number of pages, then you
likely have… -
A subreport set to PrintBehavoir of pbChild prints on the parent's page
space - like a memo. It shares the page header/footer of the parent. It can
have title/summary and groupheader/groupfooter.
A subreport set to… -
No, that is not correct. Re-read my post
You can implement autosearch without writing a single line… -
I read your original post. (Not sure I completely understand what you are
trying to accomplish.)
I understand you have one set of users that will 'Design' reports and save
to .rtm. Another set of users will 'View'.
… -
In my last post I recommended calling Viewer.DisplayAutoSearchDialog. That
takes care of regenerating the report.
Patrick,
You posted this question in a prior thread on Friday. Please give us the
opportunity to reply to the question, before giving up and starting a new
thread.in Auto Search in Homegrown Viewer Form Comment by nardmoseley February 2009
Thanks for the feedback. This is an item we have on our very long ToDo list.
I agree that would be a cool feature.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
By default RB generates the copies.
Some printer drivers have built-in capability to generate copies
If you prefer to use the printer driver to generate copies, then do the
following..
myReport.PrinterSet…
The RB 11 Query Designer has a new "Group Search" tab that supports
searching on aggregate calculations (i.e. SQL Having clause support).
In SQL, searching on an aggregate calculation can be performed in the Having
claus…
Ok, this will be added for the next maintenance release.
--
Nard Moseley
Dig…> if I have Design Guides off I cannot change size of Shape object with
Thanks for reporting this. I just emailed you a patch for RB 11.03.
Registered users can email support@digital-metaphors.com and request the
patch.
The example on rbWiki should work correctly. It uses RB's built-in PDF
export. Download and give it a try.
RB does not have a PDF Export Setup dialog. Perhaps you are using an RB
add-on to do the PDF export? If so, then …
http://www.digital-metaphors.com/rbWiki/Output/PDF/PDF_Fundamentals
--
Nard Moseley
Digital Metaphors
www.digital…There is also a possibility that you have corrupt installation. Try
following the steps outlined in this article.
www.digital-metaphors.com/rbWiki/General/Installation/Cleaning_Up_a_Corrupt_Install
-- <…Try this...
Create a new report and remove the header/footer bands.
Add two subreports to the detail band.
For each subreport set PrintBehavior to pbSection.
Access the workspace for subreport1 and load…
There is no specified number of times that OnGetText will fire in a report.
It fires whenever the Label.Caption or DBText.Text value is accessed. If the
report engine needs to check the value - for example for a group break, then <…> Nard, will these changes make it as standard into the next release of RB?
Yes.
--
Nard Mo…
I created a simple test report and put a stop in the DoBeforeGenerateSQL. I
tested using the end-user Designer. When I select the Preview tab to
generate the report, the DoBeforeGenerateSQL fires a single time. So then I
tri…dclRBC1112.bpl is the RB TeeChart support, which is compiled by the RB
installation program.
The use of the RB TeeChart support is optional. When present, a Chart and
data-aware Chart will appear on the Report Designer's compo…
Try using the Report.OnInitializeParameters event to display your custom
dialog.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
RB Server Edition supports the use of RichText components. We are not aware
of any issues. RB Server Edition is built using RB Enterprise - it uses the
same report engine.
We have customers using RB in other multi-threade…
RB Server Edition supports the use of RichText components. We are not aware
of any issues.
One possiblity is that you have a multi-threaded application and a different
thread is destroying the window handle than the thre…
- I just emailed you a patch for RB 10.09. Registered RB 10.09 uses can send
an email to support@digital-metaphors.com and request the RBuilder.ini patch
for RB 10.09.
- Make sure that none of your units include a refere…
I researched this and we will update the plug-in and example for the next
maintenance release.
For now, make the following mods..
1. Update two methods in daElevateDB.pas
function TdaEDBSession.GetDatabas…
Thanks for the feedbacl, I updated the example.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
The rbWiki page has a downloadable RAP example, did you download it and try
it out?
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
www.digital-metaphors.com/rbWiki/Delphi_Code/Calculations/How_To...Use_a_Look_Ahead_Value_in_a_Calculation
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
> I think we need a similar OnHelp event in TppReportExplorer.
For now, you can attach an event-handler to the ReportExplorer Help Topics
menu item click
Add this code to the FormCreate of your main end-user form.