Ok, Dutch, you speak about the height of the bar menu
This theme is a bit more complicated than defining the height of the items in the submenus popups
1) With clause ADJUST
MENU oMnu 2015 ;
NOBORDER ;
ROUND 6 FONT oFont ;
UPPERMNU ADJUST //NOCENTER //Add or Remove clausule and look height of menu bar and items
With clause ADJUST run OK, but you have to keep in mind the following:
The ADJUST clause automatically adjusts the height of the items to the height of the font used and to the height of the bitmaps:
MAX (height font, bitmap height)
- What happens if you are using bitmaps of different heights?
That the appearance of some items is greater
- How to solve it?
Apply the NOINHERIT clause in those popup menus
MENUITEM "Test"
MENU 2007 NOINHERIT // Remove clause ADJUST, and adjust height of item of height of font defined
.../...
ENDMENU
If height of bitmaps used they have no different height, nor greater than the font used (for example: all bitmaps are 16x16), it is not necessary to use the NOINHERIT clause
2 ) There is another simple way
Also define a bitmap in the menu items bar with the same height as the bitmaps of the popup submenu
MENU oMnu 2015 ;
NOBORDER ;
ROUND 6 FONT oFont
MENUITEM "Test" FILE "..\icons\fivewin.ico"
3) More simple ( fixed in FW 17.08 ): if in the HEIGHT clause we define a value less than 0, only MENUBAR is modified the height
MENU oMnu 2015 ;
HEIGHT -3 ;
NOBORDER ;
ROUND 6 FONT oFont
Please try all options and comment