home *** CD-ROM | disk | FTP | other *** search
-
- /**
- ** $VER: EnterASCII.quill 1.0 (30.9.94)
- ** By Timothy J. Aston
- **
- ** Prompts you for an ASCII value to insert at the current cursor
- ** position
- **
- **/
-
-
- /* Some setup first.
- */
- options results
- options failat 200
-
- TAB = d2c(9)
-
- main:
- 'REQUESTNUMBER' '"Enter an ASCII value to insert (precede hex by 0x)"'
-
- if rc = 0 then do
- 'TEXT' d2c(result)
- end
- else do
- 'SETSTATUSBAR' '"Operation cancelled"'
- end
-
- exit
-