We have the same problem in 6.5+ as in 7.1: R:Base can render reports
on paper only but not in a text file. Therefore, I design the most
reports for both, printer and file, by creating code with different
DEC CUR commands and using SEL and WRI statements. Only reports with
fine text such as bold or italic or other fonts as courier or when
you need lines are constructed by report designer. 

The size of fonts you can change in the rbase.ini in the section
[RPOutputDefaultFont]: TxtHeight=-16 for 12 pt., TxtHeight=-13 for 10
pt., TxtHeight=-11 for 8 pt. You must then COPY and RESET the ini
file.

But I have 2 questions: can I change the font family in the ini file
also? 
TxtFaceName=Courier New
TxtPitchAndFamily=49
What is the Family for Arial? 
And in 7.1/7.5, how we can change the font size and family in SEL and
WRI statements without rbase.ini?

Hartmut Braun
Karlsruhe

Albert Berry schrieb am 13.06.2005:
>I wonder if you could use a temp table and insert the data with the
>formatting tags, then unload
>the temp table to your file.
>
>CREATE TEMP TABLE TmpHTMLwithTags (LineText TEXT (256))
>
>INSERT INTO TmpHTMLwithTags (LineText) +
>  SELECT ("<P>" + (LJS(Col1,25)) & (RJS(Col2)) + "</P>") +
>  FROM SourceTable WHERE whatever
>
>OUTPUT HTMLWork.txt
>UNLOAD DATA FOR TmpHTMLwithTags AS ASCII
>OUTPUT SCREEN
>
>
>
>--- MikeB <[EMAIL PROTECTED]> wrote:
>
>> I cannot envision wherein structured textual output cannot be
>created in code, 
>> along with embedment of tags to format the output, without the
>reliance upon 
>> the report engine.
>> 
>> ISTM it should be pretty straight forward using Select and Write
>statements.
>> 
>> 
>> ----- Original Message ----- 
>> From: "Thomas J Hawley" <[EMAIL PROTECTED]>
>> To: "RBG7-L Mailing List" <[email protected]>
>> Sent: Monday, June 13, 2005 1:46 PM
>> Subject: [RBG7-L] - RE: Text Dump Issues
>> 
>> 
>> > ** Reply to message from "Gunnar Ekblad"
><[EMAIL PROTECTED]> on
>> > Mon, 13 Jun 2005 19:24:44 +0200
>> >
>> >> Have you ever considerd Cheeting?
>> >
>> > I am beginning to think that falling back to RB6.1 DOS (I don't
>have a RB7
>> > DOS license) is the way to go, at least until the output
>capabilities of
>> > RBG7 are improved.
>> >
>> > I need to apply formatting tags to the output, so Unload as
>ASCII doesn't
>> > work for me.
>> >
>> > Tom Hawley
>> > New York
>> > [EMAIL PROTECTED]
>> > 
>> 
>> 
>
>
>Albert Berry 
>Management Consultant
>RR2 - 1252 Ponderosa Drive
>Sparwood BC, V0B 2G2 
>Canada
>(250) 425-5806
>(250) 425-7259
>(708) 575-3952 (fax)
>[EMAIL PROTECTED]
>
>
>

Reply via email to