home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e002 / 1.ddi / DDE.CN_ / DDE.CN
Encoding:
Text File  |  1993-02-08  |  1.1 KB  |  62 lines

  1. /* This file remove much of Origin's generic menus
  2.  * so the software will only shows the
  3.  * File,Edit and Windows menus.
  4.  */
  5.  
  6. menu -Plot    /* make sure we are dealing with the Plot window */
  7.  
  8. menu -Remove 3
  9.     /* remove the Options menu,
  10.      * after this command, position 3
  11.      * becomes the Page menu
  12.      */
  13.  
  14. menu -R 3
  15. menu -R 3
  16. menu -R 3
  17.     /* remove page, plot and data menus 
  18.      * position 3 is now the Window
  19.      */
  20.  
  21. menu -R 4
  22.     /* remove the help menu as well */
  23.  
  24. /* We may also want to cut the File menu to 
  25.  * its minimum
  26.  */
  27. menu 1
  28.     /* move to the File menu */
  29.  
  30. menu -Delete 3;menu -d 3;menu -d 3
  31.     /* close, append */
  32.     
  33. menu -d  6;menu -d 6
  34.     /* template */
  35.  
  36. menu -d 6;menu -d 6;menu -d 6
  37.     /* import, export */
  38.  
  39. /* On the Window menu, we
  40.  * want to disable the Rename command
  41.  */
  42.  
  43. menu 3
  44.  
  45. menu -d 5
  46.  
  47. /* On the worksheet menu, we want
  48.  * the same simplicity as the Short.CNF
  49.  */
  50. Menu -Worksheet
  51.  
  52. Menu 2 /* Edit Menu */
  53.  
  54. Menu -K 15 /* remove everything below Delete menu */
  55.  
  56. Menu 3 /* Plot menu */
  57.  
  58. Menu -K 4 /* keep only Line, scatter, line-symbol */
  59.  
  60.  
  61.  
  62.