home *** CD-ROM | disk | FTP | other *** search
- /* AddCustomIndexEntry.rexx */
- /* Copyright 1994 Soft-Logik Publishing Corporation */
- /* May not be distributed without Soft-Logik Publishing Corporation's express written permission */
- /* $VER: 1.0 */
-
- OPTIONS RESULTS
- ADDRESS 'PAGESTREAM'
-
- /* Allocate requester */
- allocarexxrequester '"Work in Progress"' 444 63
- reqhandle=result
-
- /* Add gadgets */
- addarexxgadget reqhandle EXIT 187 46 70 label "_Ok"
- addhandle=result
- addarexxgadget reqhandle TEXT 8 10 424 border none string "'Sorry, this is not finished yet. A completed version'"
- addarexxgadget reqhandle TEXT 8 22 424 border none string "'will be included with a free update to PageStream3.'"
- doarexxrequester reqhandle
- freearexxrequester reqhandle
- EXIT
-