> I have an application that is form menu driven. I now have a > small app that must be located in a separate database. I want > to put a menu option on my main form to switch to the new data > base, run an application then return to the main menu.
You EEP should set a variable to signal what you want to do, then issue CLOSEWINDOW. Your main menu code should look like this: LABEL ShowMenu EDIT USING MainMenu IF (SignalCondition) THEN RUN OtherApp -- Includes commands to connect new database CONNECT OriginalDB GOTO ShowMenu ENDIF -- Larry
