home *** CD-ROM | disk | FTP | other *** search
- /* Script for setting PmNotes back to defaults */
- /* Copyright (C) 1997-1998 by Jeffrey Habets */
-
- '@Echo Off'
- Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs'
- Call SysLoadFuncs
-
- Say 'PmNotes Script for settings PmNotes back to default'
- Say 'without losing your notes.'
- Say 'Copyright (C) 1997-1998 by Jeffrey Habets'
- Say ''
-
-
- Say 'Do you want to delete the registration information? (Y/N)'
- Pull answer
- if answer = 'Y' Then
- SysIni('PmNotes.ini', 'Reg', 'DELETE:')
-
- Say 'Do you want to reset the main window and note settings? (Y/N)'
- Pull answer
- if answer = 'Y' Then
- Do
- SysIni('PmNotes.ini', 'PmNotes', 'Options', 'DELETE:')
- SysIni('PmNotes.ini', 'NotePP', 'DELETE:')
- End
-
- Say 'Do you want to reset the hotkey settings? (Y/N)'
- Pull answer
- if answer = 'Y' Then
- SysIni('PmNotes.ini', 'Hotkeys', 'DELETE:')
-
- Signal DONE
-
- DONE:
- Exit
-