Static text to display long filenames with ellipses | CodeGuru

Static text to display long filenames with ellipses

The CStaticFilespec control is a lightweight class suitable for displaying long filespecs that may need to be truncated or compressed, in order to fit the size of the display. Here’s and example of what the control looks like when used in a dialog box. By default, CStaticFilespec supports 2 drawing styles: DT_END_ELLIPSIS and DT_PATH_ELLIPSIS. The […]

Written By
CodeGuru Staff
CodeGuru Staff
Oct 1, 2002
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

The CStaticFilespec control is a lightweight class suitable for displaying long filespecs
that may need to be truncated or compressed, in order to fit the size of the display.
Here’s and example of what the control looks like when used in a dialog box.

CStaticFilespec example

By default, CStaticFilespec supports 2 drawing styles: DT_END_ELLIPSIS and
DT_PATH_ELLIPSIS. The former displays a truncated filespec with trailing
ellipses while the latter adds embedded ellipses to a compressed filespec.

Using CStaticFilespec in a dialog is quite simple:

  1. Include CStaticFilespec.h in your dialog class’ header file.

  2. Add member variables of type CStaticFilespec for every static text
    control you want to subclass.
  3. Subclass the static text controls in your dialog’s OnInitDialog() method
    and set the controls’ style.

  4.   m_wndStaticFileEnd.SubclassDlgItem (IDC_FILE_END, this);
      m_wndStaticFilePath.SubclassDlgItem (IDC_FILE_PATH, this);
      m_wndStaticFilePath.SetPath (TRUE);

You can also use any other DT_ drawing style you like. For example, to draw right
justified text that is vertically centered and has trailing ellipses, do:

  m_wndStaticText.SubclassDlgItem (IDC_STATIC_TEXT, this);
  m_wndStaticText.SetFormat (DT_RIGHT | DT_VCENTER);
  m_wndStaticText.SetWindowText ("d:\\There\\Is\\Always\\One\\More\\Bug.cpp");

Download source files (3 K) CStaticFilespec.cpp, CStaticFilespec.h

Download example project (14 K) (includes sources)


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.