TimoVJL,
This produces a perfekt dropdownmenu.
mov ebx, rv(CreateMenu) ; create the main menu
mov esi, rv(CreatePopupMenu) ; create the first sub-menu
invoke AppendMenu, esi, MF_STRING, 101, chr$("&Open") ; fill it
invoke AppendMenu,esi,MF_SEPARATOR,0,0
invoke AppendMenu, esi, MF_STRING, 102, chr$("&Save") ; with various
invoke AppendMenu,esi,MF_SEPARATOR,0,0
invoke AppendMenu, esi, MF_STRING, 103, chr$("Save&As") ; options
invoke AppendMenu,esi,MF_SEPARATOR,0,0
invoke AppendMenu, esi, MF_STRING, 105, chr$("&Exit")
invoke AppendMenu, ebx,MF_POPUP,esi,chr$("&File") ; add sub-menu to the main menu
invoke SetMenu, hWnd, ebx ; attach menu to main window
All I want is colorizing the menubar.
Where to insert "Toolbar Control and Button Styles" ?