digitalmetaphors
Comments
-
Hi Rhonda,
You can link a DADE pipeline to a form/datamodule based pipeline. Here are
two examples of this:
http://www.digital-metapho… -
Hi Rhonda,
The way which Delphi links queries is very slow. There is an alternative in
which you don't need the firing of the OnGetAutosearchValues event more than
once. What you will want to do is create a single detail dataset… -
Hi John,
I tried it and it works fine for me in RAP. I think the problem that you
are passing ppDBText1 in RAP, when the naming in RAP would be DBText1 where
the pp prefix is removed.
Are you trying to call this in D… -
Hi Roman,
I reproduced the problem. Even adding the parameter as a var param it
doesn't work. RAP must be making a copy of the object behind the scenes and
adding to that instead of the incoming object. As a workaround, can you<… -
Hi Nikolai,
Try setting it to taCenter. This was fixed for RB 7.03 so that you can set
it to taCentered. It works for taCenter as well because the enumeration is
the same for the Delphi type and our type.
Cheers,
Hi Nikolai,
Instead of a variable, use a DBCalc in the detail band and set is DBCalcType
property to dcCount. That should do what you want.
Cheers,
Jim Bennett
Digital Metaphors
Hi Moisey,
You'll have to create a RAP class that registers this class and surfaces it
so you can use it in RAP. There is an example in the RAP demos that surfaces
the TDatabase object into RAP. It raises an exception in that de…Hi Chris,
Thanks for the suggestions!
RAP is threadsafe in RB 7 and later.
Cheers,
Jim Bennett
Digital Metaphors
Hi Moisey,
Is the string list created when you call it in RAP code?
Try setting this to be a var parameter on the pass thru function to see if
that helps. Perhaps it need to be pass by value instead of by reference f…
Do not use the DataSet.AfterOpen and Afterscroll events. That is the
problem.
1. Below is an article on linking datasets. Try using one of the techniques
explained in the article. (The two techniques are mutually exclusive…
Pass the Report as a parameter to the RAP function
function GetDataSet(aReport: TppReport): TDataSet;
begin
if (aReport.DataPipeline <> nil) and (aReport.DataPipeline is
TppDBPipeline) then
Res…ReportBuilder Professional Edition (with Source) will be included as part of
Project Dionysus.
Pricing information will be made available soon. That's all I can say for
now...
Cheers,
Tom Ollar
Digita…An announcement is coming this September at http://dio.delphideli.com
Cheers,
Jim Bennett
Digital Metaphors
Windows 2000 Professional is fine. In order to run the WebTier you'll need
to install IIS from the "Windows Component" icon of Add/Remove Programs. See
the tutorials in the Developer's Guide for a step-by-step...
--
Cheers,…I've attached a new DOA DADE plug-in which addresses this issue. You should
copy this unit over your existing daDOA plug-in and regenerate the DOA
plug-in package. Note: This patch is applicable to RB 7.0 only and will not
compile for…Registered users of Enterprise can upgrade to Server Edition for $799...
Tom Ollar
Digital Metaphors Corporation
WebModuleURI doesn't look good. Should be:
http://127.0.0.1/myWebTier/myWebTier.dll
It appears to be missing a 'my' prefix (unless that was just a typo)...The WebTier is running on:
What OS and Service Pack?
What IIS and patch?
What are the values of these WebTier properties:
CacheDirectory
WebCachePath
WebModuleURI
Tom Ollar
Digita…------------------------------------------------
Article: Resolving daIBExpress compile problems
------------------------------------------------
Question:
---------
I'm receiving the following error message:
RB demos don't ship with source. Do you have a path which includes a
currently installed version of RB source from an older version of RB. Check
your library path. What is happening is that you changed the interface
section of a unit …This is a corrupt installation where the packages are mismatched for runtime
and design time as there entry points are different. Follow the corrupt
install cleanup procedure in the Tech-Tips newsgroup to remove RB completely
then rei…
This has been fixed for RB 7.04, which is now available.
--
Nard Moseley
Digital Metaphors Corporation
www.digital-metaphors.com
This is some strange behavior. Can you send a wokring simple example
project ot support@digital-metaphors.com and we'll look into it.
Cheers,
Jim Bennett
Digital Metaphors
What are your NoDataBehaviors properties set to for each report? Are the
subreports connected to datapipelines?
Cheers,
Jim Bennett
Digital Metaphors
Run the main reports demo # 51. Set the duplex in the printer setup to
horizontal for the main report and both subreports. Print this report. We
tested it here on our printer and it worked just fine- it duplexed with the
title page…Sent DynamicSubReportCreation.zip...
--
Cheers,
Tom Ollar
Digital Metaphors Corporation
We've run into quite a few problems attempting to load multiple DLLs that
contain ReportBuilder. The unit level registration scheme (where classes are
registered) usually raises errors such as: already registered.
Also, what meaning …Being handled via email.
Cheers,
Jim Bennett
Digital Metaphors
Sounds like you have two datasets but only one main report. Place the image
in a detail subreport connected to the detail datapipeline. Check out the
master detail report section in the Developer's Guide.
Cheers,
Probably the best way to handle this problem is with a workaround: Add the
dataview needed by the header subreport to the main report. Delete the
dataview from the header template. After loading the template, assign the
data pipeline …