digitalmetaphors
Comments
-
You have to include ppTypes to the uses clause.
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
Use the report's detail band as a 'driver.' Place two subreports inside of
the detail band. Set subreport #2 to ShiftRelativeTo subreport #1.
Cheers,
Jim Bennett
Digital Metaphors
-
Sorry, we don't have a rotated line component. There is a rotated label
component. You could build your own diagonal line component, modeled after
the rotated label component->
in Diagonal Lines in form Comment by digitalmetaphors March 2002 -
Let us know when you get some more specific info on your customer's printer
specifications.
Cheers,
Jim Bennett
Digital Metaphors
-
Can you print one of these images using some other application (Paint or
Paintshop...)? Is there a noticable difference in speed when printing to
these printers?
Try updating to the latest printer driver that you can.
Can you give us a sample report layout? Please, send it to
support@digital-metaphors.com We could try to build a report with 7 million
records or so by modifying on of our JITPipeline demos which creates records
at runtime. We need …What value do you get when you use the TppVariable instead of the DBCalc?
Any difference?
Cheers,
Jim Bennett
Digital Metaphors
No, the TppDBCalc calculates on every forward record traversal of the data
pipeline. It will fire just as often for the TppDBCalc as it would for the
TppVariable (The variable timing should be set to calculate on Traversal).
Could you provide some more information about how it doesn't work? Does the
count print zero or is it short one value? You can also use a TppVariable
and code its OnCalc event to perform the count.
Cheers,
Jim…Use a JITPipeline. There is an example of hooking a JITPipeline up to a
grid in your installed ..\RBuilder\Demos\Reports project. See #137
Cheers,
Jim Bennett
Digital Metaphors
Your best bet is going to set the visibility of the component in the
DetailBand.BeforePrint event. Check the variable's value and perform a
calculation in the Detail.BeforePrint event handler. Check to see if the
next variable value…Try toggling the Image's DirectDraw property.
Can you test with a different printer? Make sure you are using the latest
printer drivers offered from the printer manufacturer.
Cheers,
Jim Bennett
Digit…I will assume you have the summary band set to NewPage = True. When the
summary band prints, then set the Footerband to Visible = False. Then set
the PrintPosition of the summary band to the bottom of the page. The best
way to do thi…Sorry, I misunderstood you. You should use one subreport in the detail
band. Remove the header and footer bands in the main report. Set the
Subreport.PrintBehavior property to pbFixed. Add ppTypes to your uses
clause. Check the hel…We'll have to research it further in order to get it to behave correctly.
Thankyou, for your patience.
Cheers,
Jim Bennett
Digital Metaphors
Erich and Prazzoli, Thanks for reporting this issue.
Cheers,
Jim Bennett
Digital Metaphors
Be sure to add ppWWRichEd to your uses clause.
Cheers,
Jim Bennett
Digital Metaphors
Make sure you have the latest printer driver installed for your printer.
Have you tested with other printers? Do you have Infopower installed? RB's
rich text engine is replacable. There is an example of replacing the RB
rich text e…You should use the DBMemo.
The DBMemo word wraps by default and can be set to stretch as well. Reduce
the width of the memo and it will automatically word wrap for you.
The DBText cannot stretch, but can be set to word wr…Check Report.Engine.PrintPosRect. This will give you the top and bottom
values in microns on the page that the band just generated for. You will
need to use the DetailBand.AfterPrint event to get the height:
uses
ppUtils…You'll have to decide which subreport is going to set the detail band height
that you want. Use this subreport as the guide for hte other subreport.
You'll need to create a list of heights for each detail band that prints in
the cont…I see that there is a language option they added in 5.02 from the popup
dialog for a chart on a form. We don't provide anything to set the language
for the Teechart component which we wrap around. I don't see anything in
their help f…This is following is taken from the 6.03 release notes. Here are some fixes
which are included:
1. When using Report.OnPreviewFormCreate to set Viewer.ZoomSetting, the
viewer zoom buttons did not reflect the zoom state.
You can use the printer canvas to accurately measure the text which is
coming from the datapipeline for the current record. Try this code out:
uses
ppTypes, ppUtils;
procedure TForm1.ppDetailBand1BeforePrint(Sender…Make sure that the ShiftRelativeToProperty of Subreport2 is set to
Subreport1.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Set the ParentWidth property of the subreport to False. Then you can adjust
the width of the subreport within the band and set it's left edge at the
5.75 mark.
--
Cheers,
Alexander Kramnik
Digital Meta…You can accomplish this by selecting File->Page Setup and modifying the
Column Positions on the Layout tab.
--
Cheers,
Alexander Kramnik
Digital Metaphors
Here's a simple demo which should get you started:
http://www.digital-metaphors.com/tips/CreateReportFromDataset.zip
Cheers,
For a subreport set to pbChild, the header/footer are not supported.
A child type subreport prints on its parent's page space and
therefore behaves more like a memo.
Options:
1. Use Title/Summary band.
Some NT printer drivers have trouble with grayscale objects. You can display
the line in ReportBuilder by usign a shape object and setting it's height to
match that of the line.
--
Cheers,
Alexander Kramnik
…