digitalmetaphors
Comments
-
Delphi 4 shouldn't be the problem. We saw the problem with versions of
Delphi 5 and 6 also.
Cheers,
Jim Bennett
Digital Metaphors
-
There was a discussion on this starting on 9/7/2001 in this newsgroup.
However, no fix was found, as it happened too randomly. I've experienced
the problem in the past, but for the past two months I haven't had it happen
to me at all… -
The demo uses two reports on the form and creates a report and subreports at
runtime. You'll won't need to instantiate multiple TppReports only to load
the template from the database for each subreport. Just create one TppReport
and … -
Sorry, for the delay. You may be running off of a different version of the
source than the one installed as RB 5.56? The first test would be to try it
with RB 6.03 at Delphi design time. I've tried it here with our printers in
RB 6.… -
If you are positioning the report components at runtime, then be aware that
you should reintialize your Delphi variables before the report is printed,
as the report will regenerate for the printer after it has printed to the
screen. T… -
Call Report.PrintToDevices instead of Report.Print.
Cheers,
Jim Bennett
Digital Metaphors
-
Sorry, you have to manually create the fields in order for them to be owned
by the form.
Cheers,
Jim Bennett
Digital Metaphors
-
Are you using the OnCalc events for TppVariable calculations? Sounds like
OnCalc events are refiring for your calc components. Try setting
Report.CachePages true as a test. Are you creating draw commands
dynamically? What is happe… -
------------------------------------------------
Article: Resolving daIBExpress compile problems
------------------------------------------------
Question:
---------
I'm receiving the following error messag… -
FYI, it's been fixed for the next release.
Cheers,
Jim Bennett
Digital Metaphors
-
Instead of using the tabs, you can use the Report Tree to view all of the
subreports.
Cheers,
Jim Bennett
Digital Metaphors
-
Thanks for the feedback. It's on the ToDo list.
Cheers,
Jim Bennett
Digital Metaphors
-
I can't reproduce the problem with RB 6.02 in Delphi 5. Check the Help |
About menu in the report designer to make sure that you have 6.02 installed
into Delphi.
Cheers,
Jim Bennett
Digital Metaphors
… -
We don't add build version info in with the packages. You'll have to check
the date of the files to determine if the build of the bpls is from a
different build of RB.
Cheers,
Jim Bennett
Digital Metaphors<… -
We're working on a maintenance release which will fix this issue, since
TeeChart 5.02 was released after RB 6.02. Thankyou for your patience.
Cheers,
Jim Bennett
Digital Metaphors
-
Set Transparent to False and try toggling the DirectDraw property.
Cheers,
Jim Bennett
Digital Metaphors
-
You'll have to have a report which has its Report.PassSetting set to
psTwopass. In the first pass it would figure out how many pages are in the
report. Then as the report prints to the printer in teh second pass, you'll
need to get th… -
Is this in RB 6.02?
Can you recreate this problem without the outer group? Then try it with a
statically defined outer group. What if the outer group never changes,
perhaps set it on a custom field like a static label in the he… -
You'll have to perform the word wrapping manually. Look at ppPlainText.pas
in RBuilder\Source as it has a WordWrap method. It essentially wraps text
until it runs out of space as given by the area available in the TppRect
parameter. … -
Autosize has no effect on the DBText when wordwrapping is enabled. When
WordWrap is true, you can resize the control and it will wrap until it takes
up the height of the DBText. It should wrap when it encounters CRLF's as
well as wh… -
You'll want to use a memo in this case as the wrapping will happen
automatically based on the static width of the dbText. If autosize is true,
I believe it will wrap based on CRLF's (#13#10) embedded in the string text.
C… -
The height of the dbText needs to be manually increased if lines are to be
wrapped inside of it.
Cheers,
Jim Bennett
Digital Metaphors
-
I would check all of the datapipeline assignments, since you say you swapped
BDEPipelines for DBPipelines. Then check all of the report and report
component datapipeline assignments so that they are referencing the right
pipeline.
The data access components must all be enabled and visible so that the
report datapipelines can open them and traverse through the data. Since you
have two forms with the same data access components with the same name, then
set the o…Use query linking. In the detail query, you'll need to ORDER BY the linking
key field and also any ORDER BY fields from the master query, then you can
ORDER BY the NLCode field.
Cheers,
Jim Bennett
Digital…There is only one Gridlines boolean property on the crosstab. Run our
crosstab demos, do they show horizontal gridlines?
Cheers,
Jim Bennett
Digital Metaphors
There is the Report.OnCancel event.
Cheers,
Jim Bennett
Digital Metaphors
I just tried it with RB 6.03 with the following code and my icon showed up
on the previewer correctly.
procedure TForm1.Button1Click(Sender: TObject);
var
lIcon: TIcon;
begin
lIcon := TIcon.Create;…Send us a demo of this problem to support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
You are going to have to replace the rich text engine, as shown in the
installed ..\RBuilder\InfoPower dierctory. See the tech tips newsgroup
article on rich text for a better explanation of our rich text architecture.
Ch…