Apr 12, 2008 #1 52501 Programmer Joined Oct 26, 2005 Messages 7 Location IT How can I get the font menu windows?
Apr 12, 2008 #2 xwb Programmer Joined Jul 11, 2002 Messages 6,828 Location GB Are you asking for 1) The font menu or 2) The menu font Upvote 0 Downvote
Apr 13, 2008 Thread starter #3 52501 Programmer Joined Oct 26, 2005 Messages 7 Location IT The solution: NONCLIENTMETRICS nm; nm.cbSize = sizeof (NONCLIENTMETRICS); SystemParametersInfo (SPI_GETNONCLIENTMETRICS,0,&nm,0); LOGFONT fl = nm.lfMenuFont; Thanks Upvote 0 Downvote
The solution: NONCLIENTMETRICS nm; nm.cbSize = sizeof (NONCLIENTMETRICS); SystemParametersInfo (SPI_GETNONCLIENTMETRICS,0,&nm,0); LOGFONT fl = nm.lfMenuFont; Thanks