nardmoseley
Comments
-
The email has been received. This issue is in the queue to be looked at and
I will post a follow up here.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
As a test, try sending a simple email message to support@ that has no
attachment.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
Nothing has been received. Are you sending a .zip file?
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
Please try resending the example, we never received it.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
You could dump the data to a TClientDataSet. Or you could use the DBDemos
data.
That would not affect RichText.
Try calling Report.Reset prior to calling Report.Print
<… -
One way to model multiple pages is to create a main report with no header or
footer. Then place section style subreports in the detail band to represent
the pages or sections. A subreport that is not connected to any datapipeline <… -
The RAP demos installed with the product include an example of creating RAP
event-handlers in code. Open Demos\RAP\Main and check out demo 41.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors… -
One option might be to set the DetailBand.PrintCount property to limit the
number of records that can print on each page.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
-
As stated in my prior reply "Registered users can email support@ and request
the patch."
--
Thanks for reporting this issue.
There is now a patch available for RB 11.06 that fixes this issue.
Registered users can email support@ and request the patch.
Also, a work around is to set SummaryBand.PrintHeight to…
Here is an rbWiki 'How To' for creating groups via code...
http://www.digital-metaphors.com/rbWiki/Delphi_Code/Layouts/Create_…You can use a JITPipeline for an object list.
You can link the detail JITPipeline to the master DBPipeline via the
JITPipeline MasterDataPipeline and MasterFieldLinks properties.
There are some JITPipeline examples and tu…
There was no attachment - but that is good because attachments should never
posted to the newsgroups. You can send attachments to support@
Data..
One option would be to create a set of bitmaps (or jpegs) that repres…I emailed each of you a patch. Give it a try and let me know.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
I don't understand the difference between compile and build. But in any
case, there are no known issues with either. You either have a corrupt
installation or you have modified the Interface section of an RB source
unit.
I can compile with RBuilder\Source in my path for RB 11.06 and RB 11.07.
This error indicates that you either have a corrupt installation or you
modified the Interface section of a source code unit.
This is not an error we encounter here, nor is it an error reported by
others.
As a test try running one of our end-user demos. Or try creating a test
application that contains only the RB Designer and no other third par…
Regions are simple containers - they are very limited.
The solution is to use Subreports rather than Regions.
SubReports can contain multiple stretching objects, be it Regions or other
Subreports.
-…Example can be emailed to support@ in zip format. Include a complete
runnable example rather than an .rtm. Use only standard Delphi components
and RB. You can dump some of your data out to a TClientDataSet or as you
say, use a text…A couple of things you can try.
1. Try setting Report.CachePages to True. Then retest.
2. Try setting Report.Printersetup.DelegateCopies to True. This is a public
property, so you have to set it in code. Or set PrinterSe…
Try updating to RB 11.07 and retest.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
According the Delphi documentation all TControl descendants have gesture
support. The Viewer is a descendant of TPanel and it has a Scrollbox and
PaintBox on it, there are properties to access these controls
(TppViewer.PaintB…A patch is now available for RB 11.07 that corrects this issue. I emailed it
to you. Registered RB 11.07 users can email support@ and request the patch.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
The Demos\RCL folder contains a complete example for the Checkbox
components. There are 3 packages. The 'dcl' prefixed packaged is the
design-time only package. There is also a package for the component and
another package fo…
Using the Report Designer's Visual Data workspace (DADE) to build the report
queries is a common solution to this scenario. Then the report definition
includes the queries and no external DataPipelines are required.in Provider cannot be found. It may not be properly installed Comment by nardmoseley February 2010
I do not think the error you are encountering is related to ReportBuilder.
ReportBuilder opens the DataPipeline - which will internally call
DataSet.Open. The DBPipeline only uses simple dataset methods such as Open,
First, N…
Prior to RB 11...
The Query Designer can be used to define SQL Search Criteria. You can
designate a Search Criteria item as AutoSearch. In this case, the Search
Criteria will create an associated AutoSearchField.
Parameters that have AutoSearchSettings.Enabled create associated
AutoSearchFields at the time Report.Print is called.
This happens prior to any events firing. If you want to iterate over the
AutoSearchFields, use the Report.O…Check out TRichView, I think it might be able to do this and they have
integration for ReportBuilder. See the bottom of this page.
http://www.di…