*  ===============================================================
*               Sample Menu Enable/Disable BASIC Program
* 
*                              MENU   
*  
*  Demonstrates the use of the MENU.SCR file to disable     
*  certain menu options from Co*Star's menu bar.
*  
*  
*           Copyright CLEARVIEW Software Inc. 1992, 1993
*                      All Rights Reserved
*  ===============================================================
* 
* 
* =================================================================
* Assign the API string prefix
* =================================================================
MAGIC=CHAR(127)
* 
*  
* =================================================================
*  Send the API to Co*Star using the following output:
* 
*   Output                  Description
*   ---------------------   ---------------------------------------
*   MAGIC:"UWSCRIPT         API for executing external script file
* 
*   sdk\menu.scr            Path and filename for the script file
*
* 
*   1                       Enable Menu Items
* 
*   2                       Gray (disable) Menu Items
*       
*   3                       Delete Menu Items       
*  
*   Menu Items List         The list of Co*Star menu items that 
*                           will be modified.  Each menu item
*                           must be seperated by a comma.  The
*                           maximum length of the total API string
*                           must be less than 256 characters.
* 
*   MAGIC                   API terminator.
* =================================================================
*
*
*   Disable the Configure Terminal, Edit Hotspots, and Edit
*   Templates menu items from Co*Star's menu bar.
*
*   Note: The colon at the end of the PRINT statement is used
*   to suppress the LF/CR.   The PRINT statements have been put on
*   several lines for clarity.
*
PRINT MAGIC:
PRINT "UWSCRIPTsdk\menu.scr,2,Configure Terminal...,Edit Templates...,":        
     
PRINT "Edit Hotspots...":
PRINT MAGIC:
 
   
*      
END
