home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Menu_ChangeName.edge 1.0 (Friday 22-Oct-93 12:55:22)
- **
- ** Change the filename for the current window's file
- **
- ** Written by Thomas liljetoft & Inovatronics
- */
-
- options results
-
- /* get the current filename */
- getenvvar _fe_name
-
- /* ask the user if they want to change the file's name */
- requeststring TITLE """New Name For File?""" DEFAULT """"result""""
-
- /* if so then do it */
- if RC == 0 then putenvvar _fe_name """"result""""
-