To make a menu appear in your top level form, the following must be done:
Open the menu in the Menu Designer. Go to the View menu and select General Options and be sure "Top-Level Form" is selected.
Be sure that the form you have it in has the ShowWindow property set to 2-As Top Level Form.
Once the Form is active, you need to call the menu with a parameter: an object reference to the top-level form. I do this from the form itself:
Procedure Init
DO MyMenu.mpr WITH THIS
EndProc
If you have done all this and it still doesn't work, what is going wrong? What does it do?