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 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.

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read