Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get Menu Font

Status
Not open for further replies.

52501

Programmer
Joined
Oct 26, 2005
Messages
7
Location
IT
How can I get the font menu windows?
 
Are you asking for

1) The font menu or
2) The menu font
 
The solution:

NONCLIENTMETRICS nm;
nm.cbSize = sizeof (NONCLIENTMETRICS);

SystemParametersInfo (SPI_GETNONCLIENTMETRICS,0,&nm,0);
LOGFONT fl = nm.lfMenuFont;

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top