A Primitive Spellchecker in MS VC++ 6.0 | CodeGuru

A Primitive Spellchecker in MS VC++ 6.0

Introduction It’s quite common knowledge that you can specify your own keywords for the syntax color highlighting of the MS VC++ environment. The idea of this article is to make excessive use of this feature to achive the effect of a simple and free spellchecking tool. All the common things will be displayed in a […]

Written By
CodeGuru Staff
CodeGuru Staff
Sep 6, 2005
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

Introduction

It’s quite common knowledge that you can specify your own keywords for the syntax color highlighting of the MS VC++ environment. The idea of this article is to make excessive use of this feature to achive the effect of a simple and free spellchecking tool. All the common things will be displayed in a special color—if they’re written correctly.

For this, all the common things that are used when programming are put into the file “usertype.dat” that contains all user-defined keywords. The challenge is to get an (almost) complete list of all data types, classes, member functions, and define those that are commonly used. Because this is quite a lot of work, you should start with the file enclosed in this article. It contains more that 3,000 words, giving you a good start. Depending on the things you work on, you’ll probably add your own things sooner or later.

Using the Code

Just unzip the file and place it in the “\Common\MSDev98\Bin” subdirectory of you MS VC++ installation. You’ll have to restart the IDE and may want to configure the color used for user-defined keywords in the IDE’s options.

Points of Interest

Currently, I have more than 3,000 keywords in the file and it works nicely. I’ve expected to encounter some kind of limit, but so far it works quite well.

History

I’m always adding new keywords when I encounter them. You can download the latest version on my homepage: http://www.itsth.de/en/ueber/dev_usertype.php. You can find some other tricks and tools there, too.

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.