Classes script

From OS2World.Com Wiki
Revision as of 18:05, 19 July 2013 by Martini (talk | contribs) (Created page with "A little REXX script to show all the registered classes on your system. ==Author== * Cristiano Guadagnino ==Script== <PRE> A little ReXX tool to list WPS classes: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A little REXX script to show all the registered classes on your system.

Author

Script

/* A little ReXX tool to list WPS classes */

rc = rxFuncAdd( 'sysLoadFuncs', 'rexxUtil', 'SysLoadFuncs' )

if rc = 0 then do
  call sysLoadFuncs
  say 'RexxUtil.dll functions registered'
end

say 'WPS Classes: '
call SysQueryClassList "list."
do i = 1 to list.0
  say 'Class' i 'is' list.i
end

exit 0