Hiding the Superbase MRU List Summary : This technote explains how to hide the MRU (Most Recently Used) list of files. By modifying the menu bar using the Menu editor, you can avoid seeing the MRU list of files. For more information on how to use the menu editor, see Chapter 4, "Creating an application" in the Developing Applications manual. First, create a custom menu and save it as menu1.sbp. In Superbase, choose Program|Edit and open Menu1.sbp. It should look similar to the code below: SUB main() CALL MENU1() MENU ON SET MENU FROM CURRENT END SUB SUB MENU1() MENU CLEAR --- --- --- END SUB By placing the menu under program control, you can hide the MRUs. The menu can be placed under program control by having WAIT loop as shown below: SUB main() CALL MENU1() MENU ON SET MENU FROM CURRENT label1: WAIT MENU GOTO label1 END SUB. When you run the modified menu1.sbp program, the MRU list is hidden. Program: Superbase Versions: 2.0 Date: June 22, 1991 D Date: