After setting the fonts for the dialogs etc to Tahoma, the menus still are in MS Sans Serif.
Is it possible to change the menu font ? (Is it already possible and am I missing it ??? :( )
In the "Font Options" dialog, is it possible to see the name of the selected font along with the sample ?
Also could you make the dialog such that it can't be resized such that the text is not visible ?
Hi
In AlexMenu addin:
invoke GetStockObject,DEFAULT_GUI_FONT
invoke SelectObject,mDC,eax
It should be an easy task to use another font.
KetilO
yes, if I switch AlexiMenu off, the menus look fine !!!
Hi shantanu_gadgil
Do you know a way to get the font used on menus on XP?
KetilO
> Do you know a way to get the font used on menus on XP?
No...but the menu is a "child" of the RadASM main window, right ? So why not use the same font ?
Quote from: KetilO on April 20, 2005, 10:25:21 AM
Do you know a way to get the font used on menus on XP?
What about:
LOCAL ncm:NONCLIENTMETRICS
...
mov ncm.cbSize,sizeof NONCLIENTMETRICS
invoke SystemParametersInfo,SPI_GETNONCLIENTMETRICS,sizeof NONCLIENTMETRICS,addr ncm,0
invoke CreateFontIndirect,addr ncm.lfMenuFont
...
Thanks,
Just what I was looking for.
KetilO