home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 10
/
aminetcdnumber101996.iso
/
Aminet
/
misc
/
math
/
graph2d320.lha
/
Graph2DV3.20
/
Rexx
/
GetInfos.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-04-29
|
771b
|
49 lines
/*
** This script shows how to get information
** from the ARexx port of Graph2D
** Author: Kai Nickel
*/
options results
ADDRESS 'GRAPH2D.1'
INFO TITLE
title = result
SAY "Title......: "title
INFO AUTHOR
author = result
SAY "Author.....: "author
INFO COPYRIGHT
copyright = result
SAY "Copyright..: "copyright
INFO DESCRIPTION
description = result
SAY "Description: "description
INFO VERSION
version = result
SAY "Version....: "version
INFO BASE
base = result
SAY "Basename.....: "base
INFO SCREEN
screen = result
SAY "Screen.......: "screen
GETFUNCTION PLAIN
func = result
SAY "PlainFunction: "func
GETFUNCTION MS20
func = result
SAY "MSFunction...: "func
HELP 't:graph2dhelp'
ADDRESS command "TYPE t:Graph2DHelp"
ADDRESS command "delete >NIL: t:Graph2DHelp"