Click here to Skip to main content
15,893,508 members
Articles / Desktop Programming / MFC
Article

A Primitive Spellchecker in Microsoft C++ 6.0

Rate me:
Please Sign up or sign in to vote.
3.50/5 (5 votes)
20 Apr 2003CPOL1 min read 51.1K   356   12   6
This article demonstates how to use Microsoft C++ as a spellchecker while programming by making excessive use of the user-defined keyword feature
Image 1

Introduction

It's quite common knowledge that you can specify your own keywords for the syntax color highlighting of the Microsoft C++ environment. The idea of this article is to make excessive use of this feature to achieve 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 which contains all user-defined keywords. The challenge is to get an (almost) complete list of all data types, classes, member functions and defines that are commonly used. Since this is quite a lot of work, you should start with the file enclosed in this article. It contains more that 2000 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 subdirectory \Common\MSDev98\Bin of your Microsoft C++ 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 2000 keywords in the file and it works nicely. I've expected to encounter some kind of limit, but so far it works nicely.

History

  • 21st April, 2003: Initial post

I'm always adding new keywords when I encounter them. You can download the latest version on my homepage. You can find some other tricks and tools there, too.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
JokeAlso works with VS 2005 Pin
KarstenK11-Jun-06 21:33
mveKarstenK11-Jun-06 21:33 
Generalva Pin
dog_spawn21-Apr-03 10:26
dog_spawn21-Apr-03 10:26 
GeneralRe: va Pin
Paul Selormey21-Apr-03 14:13
Paul Selormey21-Apr-03 14:13 
GeneralRe: va Pin
lxwde21-Apr-03 14:44
lxwde21-Apr-03 14:44 
GeneralRe: va Pin
lxwde21-Apr-03 14:45
lxwde21-Apr-03 14:45 
GeneralRe: va Pin
dog_spawn22-Apr-03 5:39
dog_spawn22-Apr-03 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.