HMENU hSubMenu2;
function set_sub_menus()
{
long menu;
long hSubMenu;
menu=CreateMenu();
hSubMenu=CreateMenu();
hSubMenu2=CreatePopupMenu();
InsertMenu(hSubMenu,1,MF_BYPOSITION|MF_STRING,1,"Neu");
InsertMenu(hSubMenu,2,MF_BYPOSITION|MF_STRING,2,"Öffnen");
InsertMenu(hSubMenu,3,MF_BYPOSITION|MF_STRING,3,"Speichern");
InsertMenu(hSubMenu,5,MF_BYPOSITION|MF_STRING,4,"Beenden");
//Popupmenu!!
InsertMenu(hSubMenu2,1,MF_BYPOSITION|MF_STRING,5,"Test");
InsertMenu(menu,0,MF_BYPOSITION|MF_STRING|MF_POPUP,hSubMenu,"Datei");
SetMenu(hWnd,menu);
}