CCharSetBtn Control | CodeGuru

CCharSetBtn Control

Environment: VC6 SP4, NT4 SP3 I needed a control to choose a character from a specific charset and the options to use bold and/or italic font. Therefore I derived an ownerdrawn control from CButton based on the work of Shekar Narayanan and S. D. Rajan which opens a popup dialog as a drop-down window. The […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 19, 2001
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6 SP4, NT4 SP3

I needed a control to choose a character from a specific charset and the options to use bold and/or italic font. Therefore I derived an ownerdrawn control from CButton based on the work of Shekar Narayanan and S. D. Rajan which opens a popup dialog as a drop-down window. The Dialog itself holds a ComboBox derived font-ComboBox (which includes some code-snippets of Norm Almond) and a custom control which performs the character selection.

To use the control, do the following:

  1. Import the header files (including in the attached source code) and add the .cpp files (also attached to this article) from the section CharSetBtn.
  2. Import the resources IDB_GLYPHS (printer-images) and IDD_CHARSET_DLG (the popup-window including the CharSetCtrl).
  3. On your dialog insert a button (set style-flag ownerdraw).
  4. Add a CButton control-member-variable in the class-wizard. Change the CButton class in the dialog-header-file to CCharSetBtn and that’s it.

The class CCharSetBtn has got the member-variables

  int      m_nChar;
  CString  m_strFaceName;
  BOOL     m_bItalic;
  BOOL     m_bBold;

which perform the data-exchange.

With a little modification you can also use the complete LOFGONT structure.

If you decide to use this code please do not remove copyright notices from the source and header files and give me a short e-mail.

Downloads

Download demo project – 40 Kb

Download source – 29 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.