Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Menu 1

Status
Not open for further replies.

Atlas

Programmer
Sep 20, 1999
26
US
I have an application that runs from a project and uses its own menu. I call the menu from the main program with a do menu commnad. The menu displays but is not active, a dialogue box is displayed looking form the menu file. After you click on this menu is activated. I know there is a way to add this menu to memory but I am having no luck.

Thanks

Atlas
 
Atlas;

Are you doing a PUSH MENU _MSYSMENU before your DO MENU command.
Code:
PUSH MENU _MSYSMENU
DO MENU MyMenu

*!* Other stuff goes here
*!* Quitting time!

POP MENU _MSYSMENU
RETURN

Ed

Please let me know if the suggestion(s) I provide are helpful to you.
Sometimes you're the windshield... Sometimes you're the bug.
smallbug.gif
 
No I am do not have line PUSH MENU _MSYSMENU in my program. Would this correct the issue I am having.

Atlas
 
Atlas;

It could be your problem. Give it a try.

Ed


Please let me know if the suggestion(s) I provide are helpful to you.
Sometimes you're the windshield... Sometimes you're the bug.
smallbug.gif
 
Could your problem be a pathing problem? Can the menu be found?

Tamar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top