Re: Superscripting data

From: Chris E <chrischaisson_at_hotmail.com>
Date: 30 Sep 2003 08:30:07 -0700
Message-ID: <b1c2e7fa.0309300730.348d882_at_posting.google.com>


chrischaisson_at_hotmail.com (Chris E) wrote in message news:<b1c2e7fa.0309291247.7c09136c_at_posting.google.com>...
> How can I superscript data from a database table? Any help is appreciated.

I figured it out. Format the field in the formatting trigger. Like this:
function F_1FormatTrigger return boolean is begin

srw.attr.mask := SRW.TEXT_ATTR + 
SRW.FACE_ATTR + 
SRW.SZ_ATTR + 
SRW.HJUST_ATTR; 
srw.attr.text := SRW.BOLD_TEXTA; 
srw.attr.face := 'verdana'; 
srw.attr.sz := 6; 
srw.attr.hjust := SRW.LEFT_HJUST; 
srw.set_attr (0, srw.attr); 
 

RETURN (TRUE); end;

That gives the results wanted. Underlining, font color and other attributes are also available to set. Received on Tue Sep 30 2003 - 17:30:07 CEST

Original text of this message