Alternative Mechanism for Acessing Simple Dialog Items | CodeGuru

Alternative Mechanism for Acessing Simple Dialog Items

I never liked using standard MSVC features for manipulating simple text controls such as edit or static controls, like using Class Wizard variables and the UpdateData function. So, I developed support for “UI variables.” It allows you to: Add a text “variable” to the class by just one line added to the Windows class definition […]

Written By
CodeGuru Staff
CodeGuru Staff
Jun 29, 2006
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

I never liked using standard MSVC features for manipulating simple text controls such as edit or static controls, like using Class Wizard variables and the UpdateData function. So, I developed support for “UI variables.” It allows you to:

  1. Add a text “variable” to the class by just one line added to the Windows class definition (that is derived from MFC Cdialog or the CformView class).
  2. Manipulate with this variable by simply accessing it like a regular string (or integer). Every time you assign a value to it, the new value will be displayed. When you read it, the current value will be obtained from the control and returned as the “variable” value (for string UI variables only).

UI variables are implemented by C++ macros:

  • WUI_VAR(name, item, parent_type)
  • WUI_VARI(name, item, fmt_, parent_type)

Where:

  • name: Variable name
  • item: ID of the control
  • fmt_: Output format string for a single integer value
  • parent_type: Class name of the parent class.

Notes:

  • The parent class must be derived from CWndB (typically from either Cdialog or CformView).
  • The UI variables mechanism does not provide any checking of read values. That is why WUI_VARI allows only output of integer values.
  • The “parent_type” argument seems to be redundant for users. It is the only way I have found (using C++) to have a definition of the UI variable exactly in one place and allow access to the parent object. And, even this way is not perfect because it uses a non-standard C++ feature: using “offsetof” with a non-POD class. It works with simple regular MFC classes (what is actually needed), but I am not sure it would work correctly in case of using multiple/virtual inheritance.
  • All this was developed and tested using MSVC 6.0 and Windows XP.
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.