rbuser
Comments
-
> I want the user is able to read the report on the preview without having
to
Several options:
1) Have them get a bigger screen
2) Set values for the form in the OnPreviewFormCreate (for an example
sear… -
Just use a Report label and before calling the print method of the report,
use: YourLabel.Caption := TheParamValue;
--
Guillermo Casta?o A.
www.GrupoMillennium.com
-
-
David,
There is a tool called 'RAP2Text' that could be used to convert the RAP code
into readable text. This app allows you to save this text into a text file
with a '.ctt' extension. (i.e. MyReport.rtm will have a MyReport.ct… -
But that way I have still have to run every report to find out which ones
are using it. Is there no way to use something like Grep to search the
template text files for the function name?
David
-
Does the file get created? Did you set the devicetype and allowprintofile properties
on the report? You are eligible for a free upgrade to the latest version if you
are interested.
James Waler
Waler Ltd
in Background Printing and Stream Comment by rbuser November 2003 -
but now how do I load my "reportfile.rtm" file?
-
var
Output : TFileStream;
begin
ppReport1.TextFileName := 'WebTest.pdf';
ppReport1.Print;
Output := TFileStream.Create('WebTest.pdf',fmOpenRead,fmShareDenyNone);
Output.Position := 0;
Response… -
Hi James.
Actually I use ReportBuilder 5.x and TExtraDevices 1.7, and I think those
demos have features not available for me. Do you think that I could just
print to a file (directly) and them assign the file to a TFileStream back to… -
Check out the internet demo on the download page. It shows you
how to print to a stream and send it back to the browser.
www.waler.com/download.htm
James Waler
Waler Ltd
in Background Printing and Stream Comment by rbuser November 2003 -
any tips? (:
--
Lynn, City of Sin. You never come out the way you went in...
-
Thanks. Yeah I didnt expect there not to be a printer attached to the PC,
when reporting was one of its main uses...
-
This should work:
MyReport.Template.FileName:= ThePathToRTMFile;
MyReport.Template.LoadFromFile;
MyReport.Print;
-
Use the at command from windows. Take a look in the windows help.
-
Use a Timer component and program it yourself.
Bye
--
Guillermo Casta?o A.
www.GrupoMillennium.com
-
MS Sans Serif workes fine but it would be great if I can use other font too.
There must be a way to change the charset. Any ideas?
-
That does not change the char set! But I found a way. The problem is the
Arial font. It does not support polish character. MS Sans Serif does. So the
customer have to use this font and it will workin Need polish charset Comment by rbuser November 2003
-
On Fri, 14 Nov 2003 10:18:31 -0700, "Nico Cizik \(Digital Metaphors\)"
-
On Thu, 13 Nov 2003 08:52:40 -0700, "Nico Cizik \(Digital Metaphors\)"
-
Never mind. I see this has been covered many time before. The messages
were just too old to show up in OE but found when I switched to a
machine that had XanaNews.
(Answer is to study the "3. EndUser/5. Dynamic Subreport Loading… -
Thanks.
-
You should be able to get a continuous driver from the label manufacturer.
If it has a XP driver, most have a paper size option of continuous.
Then just design your report and print.
James Waler
Waler Ltd
in Printing A report To A Dedicated Label Printer Comment by rbuser November 2003 -
I have tried that and it doesn't work. This is the code I am using. The
report needs to be created on the fly because the Paper Height and Width may
be different for different people. The Print Preview looks fine, but when
you actu… -
Didn't it work when you set the Report size manuell? Create a new report and
then select 'Page Setup' from the 'File' menu. In the tab 'Paper size' you
can change the reports size.
"Justin Heasman (OMS Ltd)"
The problem with the font size seems to be incorrect. The linespacing and
the width of the characters seems to be different from the original
document. Did the same test with Wordpad and got the same result as
Reportbuilder.
> Doesn't ReportBuilder have a Band of SubDetail?
Better, you can use SubReports. Search the toolbar for 'Subreport' and click
it into the main report. Now you have a new register on the bottom to change
from the main report to the…The following is what I tried next but it was blowing up because the events
that are attached to the report are not present.
ppreport2.Template.DatabaseSettings.Name := FileListDBName.Strings[i];
ppreport2.Template.L…How would I do using reportexplorer or some other ReportBuilder method?
Nico Cizik (Digital Metaphors) wrote:
Thanks, Nico. I was reading the source code of ppCTMain, in the
TraTppElementRTTI.GetPropRec method, it used EnumPropToRect(aPropName,
'TColor', False, aPropRec). so it should be a bug…The demo is compiled with RB 7.03. If you have an older version of RB, you cannot install
the demo. There is a compiled demo application that will read your archive files to test the product
on the download page (www.waler.com/download.ht…