Classes script: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 29: | Line 29: | ||
[[Category:Software]] | [[Category:Software]] | ||
[[Category:Open Source Software]] |
Revision as of 18:58, 30 July 2013
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
License
Open Source under the GNU GPL V2 License.