home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gfx
/
jcgraph-1.21.lha
/
JcGraph
/
Rexx
/
SizeX.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-10-05
|
476b
|
20 lines
/* SizeX.rex */
/* --------- */
/* Description: Ask for X axis font size and set it accordingly. No */
/* validation is done on the value entered , so, be */
/* careful. */
options results
address 'JCGRAPH'
'GetTypeValue 20'
FontSize=result
'requestnumber Enter X axis font size please. Actual font size is:' FontSize
FontSize=result
if RC == 0 then do
'SetTypeValue 20 ' FontSize
end