home *** CD-ROM | disk | FTP | other *** search
- /* Move note to WB screen*/
-
- address 'blocnotes.rexx'
- options results
-
- /*Get the id of the note*/
-
- parse arg id .
-
- ISANOTE id
- if result then do /* Check if the id is valid*/
- SAVE id
- FIXEDSCREEN id SCREEN 'Workbench'
- HIDE id
- SHOW id
- FIXEDSCREEN id OFF
- SAVE id
- end