0

I want to create a menu without any submenus.
A common way to create a menu is:

BEGIN
   POPUP "File"
   BEGIN
      MENUITEM "Copy", IDM_EDIT_COPY
      MENUITEM "Paste", IDM_EDIT_PASTE
   END
   ...
END

Now I just want "File" without the submenus "Copy" and "Paste". How do I achieve this?

Axalo
  • 2,953
  • 4
  • 25
  • 39
user3185008
  • 121
  • 6
  • I don't think I've *ever* seen an application do this, so I don't know whether it is possible or not, but have you tried BEGIN/MENUITEM/END? – Harry Johnston Apr 27 '15 at 05:38
  • 1
    Yes tried..It doesnot serve the purpose. It created a pop menu with empty submenu.. There is popup present which is empty – user3185008 Apr 27 '15 at 05:45

1 Answers1

0

Did you try

BEGIN
   MENUITEM "File", ID_FILE
   ...
END

?

sergiol
  • 4,122
  • 4
  • 47
  • 81