| Title | Under | Posted on |
|---|---|---|
| Inserting records | PeopleSoft Technical | 07/28/2010 - 11:03am |
| WEBLIB_PT_NAV.ISCRIPT1.FieldFormula.IScript_PT_NAV_PAGELET error... | PeopleSoft Technical | 07/27/2010 - 2:02pm |
| Basic language | PeopleSoft Technical | 07/27/2010 - 7:12am |
| Rowlevel security from app designer | PeopleSoft Technical | 07/27/2010 - 5:15am |
there is a set-color command in SQR. You may use that. I don't have the code though..
Thanks,
Ashar
SQR comes with sixteen defined colors.DECLARE-COLOR-MAP command is used to define additional colors in the BEGIN-SETUP section.
We can use defined colors directly as follows....
print 'Hello' (1,2)
foreground=('red')
background=('blue')
SET-COLOR nad GET-COLOR commands can also be used.This commands are allowed wherever the PRINT command is allowed.
The GET-COLOR command retieves the current color.
eg: get-color print-text-foreground=($color)
The SET-COLOR command sets the color.
eg:set-color print-text-foreground=(’purple’)
Post new comment