Classes script: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| (One intermediate revision by one other user not shown) | |||
| Line 19: | Line 19: | ||
exit 0 | exit 0 | ||
</PRE> | </PRE> | ||
==License== | ==License== | ||
*Open Source under the GNU GPL V2 License. | *Open Source under the GNU GPL V2 License. | ||
*Author: [[Cristiano Guadagnino]] | *Author: [[Cristiano Guadagnino]] | ||
[[Category:WPS Utilities]] | |||
[[Category:Open Source Software]] | [[Category:Open Source Software]] | ||
Latest revision as of 21:48, 19 January 2026
A little REXX script to show all the registered classes on your system.
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.
- Author: Cristiano Guadagnino