nardmoseley
Comments
-
That type of page numbering requires a two pass report.
Try adding a line of code to set the Report.PassSetting to psTwoPass...
Example:
uses
ppTypes;
MasterRpt := TppReport.Create(Self);
For each suport, after setting it to pbSection, then set ParentPrinterSetup
to False. I would do that prior to setting the report property.
for i := 0 to RptList.Count -1 do begin
SR := TppSubReport.Create(nil);
Yes.
- download the latest version from the Download | RCL page of our web site
http://www.digital-metaphors.com/download/re…
There is a post titled 'Req: ReportBuilder XML Export' in the Borland Third
Party Tools newsgroup dated June 5, 2006 by Eddie Shipman. Perhaps you are
working with him or perhaps you are the same person? If the answer is no,
…
Thanks for the providing the additional information. Please re-read my post,
I believe my second suggestion provides the answer.
1. www.digital-metaphors.com/tips/SavePrinterDevMode.zip
2. I also recommending checking out RBuilder\Source\ppPrintr.pas, the method
PrinterSetupToDevMode
Answered in the general newsgroup. Please do not cross post messages.
Are you using the latest release - RB 10.03? (check the Help | About box of
the report designer).
In my testing here with RB 10.03 and Windows XP, the local and network
printers appear with the correct image.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
What OS are you using? Windows XP?
The TPsRBPDFDevice class is a Pragnaan class, you must be using the Pragnaan
RB Export Devices. Try contacting Pragnaan tech support with this issue.
When exporting to PDF the JPG is converted to a bitmap. That is why you are
seeing the size increase.
- one solution might be to decrease the resolution of the images that you
using
- another solution might be to in…
- you are using RB 10.03, correct? (This sounds like an issue that we fixed
a few releases ago - however I think you had said you are uinsg RB 10.03).
- BDS 2006 includes Interbase 7.5, which I have installed. I ha…Just to follow up here on the newsgroup..
- received the example from Nols
- created a patch for RB 10.03
- Nols has confirmed that the patch resolves the issue
--
Nard Moseley
Digital Metaphors
…
Ok. You can probably create a simple example using DBDemos data. I think the
key is to create a layout with the same characteristics as your real report.
The RB XHTML is created valid html, I would not classify this as a bug b…- Those link do not reference a report directly. I ran the first report, for
Tswaing. The two reports look different - are they produced from the same
layout? Where is the Region used in the report. Without seeing the layout it
is …
- I created a simple example using DBDemos. I placed a Region with DBText
and DBImage in the detail band and also another DBText and DBImage outside
the Region in the detail band.
- I can select any of the Text (inside o…
Thanks the clarification on what you are trying to do.
Here is an example I created.
uses
ppPrintr;
procedure TForm1.Button1Click(Sender: TObject);
var
lDevMode: THandle;
lPDevMode: PD…
--------------------------------------------------
Tech Tip: Windows Default Printer Settings
---------------------------------------------------
1. Default Printer Name
You can get the name of the computers de…
- use the File | Print To File setup dialog to specify which bands and
components you want to export.
- the Developers Guide contains a tutorial on how to do this.
- programmatically you can set the Band.Save, Compo…
As a test, in the main Form OnCreate add the line of code shown below. This
will cause the Delphi runtime error checking to ignore floating point
overflow errors that occur in the printer driver.
uses
SysUtils;
- no email was received at support@digital-metaphors.com. (Girish has my
personal email, in the future have him contact me if this issue persist)
- I recommend looking at the TppDrawRichText.Draw method for an example of
Rather than work on your real report, I recommend taking a step back and
creating a very simple example. You can use the Delphi DBDemos data. First
use the report designer to create a layout that contains a memo and dbText
an…
- as a first step I would try created a similar layout using the designer
and then once you get that working correctly, perform a view as text on the
form or save the template to an ascii format .rtfm file and open it in the
…
Please read the newsgroup guidelines and conduct yourself accordingly. These
newsgroups are a place for problem solving and colloboration about building
world class reporting solutions.
ReportBuilder does not use the Del…
Run RBuilder\Demos\Reports\Demo.dpr and select the Printer category. There
is an example of printing to multiple printers simultaneously.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
For future reference, if you have an issue with Waler's TExtraDevices, I
recommend that you specify that in the subject so that it is clear to all
relevant parties.
This issue is isolated to TExtraDevices, it is not due …
Try adding a call to Report.InitializeParameters
Example:
if myReport.InitializeParameters then
myReport.PrintToDevices;
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com<…
Good to hear you solved the issue.
I think I remember now, that we modified that method and thought we had
solved the problem. Then we had another customer report the issue again. I
think there are two cases: the default…
The latest release - RB 10.04, supports printer names longer then 80
characters. RB 10.04 includes support for D6, D7, D2005, and D2006.
The last produced release for D5 is RB 7.04, but I think it contains the 80
charact…