home *** CD-ROM | disk | FTP | other *** search
- /* Hides notes and makes it not autoopen*/
-
- 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*/
- HIDE id
- AUTOOPEN id OFF
- FIXEDSCREEN id OFF
- SAVE id
- end