Click here to Skip to main content
15,885,244 members
Articles / Programming Languages / Visual Basic
Article

Custom Auto Complete for Visual C++ 6

Rate me:
Please Sign up or sign in to vote.
3.68/5 (17 votes)
17 Mar 20045 min read 71.5K   1.3K   17   13
Add-In that enables customized auto complete to code/comment blocks in Developer Studio IDE

Sample Image - AutoComplete.jpg

General

The idea behind this Add-in is that as programmers we are doing the same tasks over and over again, like writing of an “if else” or “try catch” blocks.

The main target of this Add-in is to release us from these tedious assignments and to concentrate on the real programming challenges. Using this Add-in you will be able to determine for your self what kind of block codes you want to create in a quick mode, and the shortcuts to activate each block.

Description

The Add-in works in a very simple way:

All you have to do is to decide about the blocks you wish to crate in quick mode, for example:

if()

{

}

and then, decide what code you need to type for this block to appear on the screen, I decided “if” (big surprise). After typing the specific code all you have to do is to click the designated toolbar button, or user keyboard shortcut you have selected for it (the preferred way).

After the block is written to the screen, you still need to use the mouse to navigate to the first place you want to modify – the () area of this example. To save this “hard” work the Add-in giving us the option to decide where the cursor will go after the code block

Just write down: “@SELECTION@” in the designated area, and when the code is generated, this area will be selected. All you have to do is to write down your code.

The template will look like that:

if(@SELECTION@)

{

}

How Does it Work?

The templates are saved in XML file called AutoCompleteINI.xml. The file exists in both binary.zip and Custom_Auto_Complete_src.zip. It contains the following elements:

CurrentUser

This tag will contain the current user working on the code – you can edit the user name by using the configuration form included in the Add-in

CodeTemplateTags

Tags that can be inserted into the block and the Add-in will automatically change them in the code generating process, for example: the [VAR:USERNAME] tag will be replaced with the CurrentUser\UserName.

CodeTemplates

This tag will contain all the code blocks (called templates) that exist in the current machine.

Template – This tag contains the information for specific code block. Each block (template) contains a TName property which uniquely identifies the block and the block itself separated into lines.

NOTE: To read information from the XML file I added customized ActiveX DLL that wraps the standard XML library. The code for this ActiveX is not added here and it is not necessary, I am sure that many people will be able to read the XML better then I did, but it still does the job.

Here is a code example of XML reading in this Add-in

VB.NET
' Loads all application 

information from XML file

Public Function intialize() As Boolean

    Dim sIniFile As String

    Dim xmlFile As New CXMLParser

    Dim xmlElem As CXMLElement



    sIniFile = gApp.Path & "\AutoCompleteINI.xml"

    Call xmlFile.Init(sIniFile)

    ' Extract the username from the XML

    m_sUserName = xmlFile.getElementPropertyValue("CPPAddIn\CurrentUser", 
cUserNameProp)

    ' Initialize the code templates (the custom blocks for auto completion)

    Call initCodeTemplates(xmlFile)

    ' Initialize the Tags

    Call initTags(xmlFile)

    logIt "intialize", "Initialization Complete Successfuly"

End Function

When we write a keyword for a specific template, the code extracts the last word we typed and search the template in a collection.

We do not have to type the full name of the template we want to generate, we can write the beginning of the word and the Add-in will open another window showing all the existing templates and the closest match will be selected. All we need to do now is to press Enter or double click the requested template.

Add Your Own Code/Comment Blocks

I forgot to add this important part when I published the article so it's about time.

To add you own template you can edit the AutoCompleteINI.xml file by your self. It is very simple but it is not the goal of this Add-in.

For the purpose of editing and adding new blocks (templates) you have the second button of the Add-in. You can see the screen shot of the configuration screen at the top of the article. To add new block for quick access, all you have to do is right click on the tree on the left, and choose add template. You will be prompted to insert you shortcut key, and when you press ok, you will see the new entry in the bottom of the tree, just left click it and use the right bottom text area to write your code block.

You can also delete your template by the same context menu.

Using the Add-in

To open the VB project you need to register the XMLParser.dll file. I included reg.bat file to help you do it without any typing.

To install the binary and use it under Visual C++ 6 please read the Readme.txt file added in both zip files

The code was tested under Windows2000/XP only and it may work under windows 98 but who knows for sure…

Last Word for Now

This Add-in is a part of a larger suite for MSDev. I wrote it for the usage of my company and I got some good reviews.

I decided to publish this part because it is my first article ever submitted and I hope that after receiving emails on all the bugs I have on this little part and improvement suggestions I will be able to release the rest of the code for you all to use.

I used VB although I am a C++ programmer because it is very easy to write simple Add-ins with it. In C++ there is too just much overhead for this kind of application.

Next to Be Published

  • Class Wizard that include members, methods, base classes, namespace, operators and more
  • A tool that captures all the //TODO and enable the user to send them to the outlook as tasks

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions

 
GeneralLack of source files Pin
yuri_g2-Feb-05 4:36
yuri_g2-Feb-05 4:36 
QuestionCan I use this in visual c++ .NET Pin
adynis24-Apr-04 3:07
adynis24-Apr-04 3:07 
AnswerRe: Can I use this in visual c++ .NET Pin
Ilan Shapira27-Apr-04 18:39
Ilan Shapira27-Apr-04 18:39 
GeneralA little bit buggy Pin
Proxy4NT29-Mar-04 3:21
Proxy4NT29-Mar-04 3:21 
GeneralRe: A little bit buggy Pin
Ilan Shapira29-Mar-04 18:13
Ilan Shapira29-Mar-04 18:13 
GeneralRe: A little bit buggy Pin
Proxy4NT29-Mar-04 19:20
Proxy4NT29-Mar-04 19:20 
GeneralRe: A little bit buggy Pin
Ilan Shapira29-Mar-04 23:01
Ilan Shapira29-Mar-04 23:01 
GeneralNot bad, nat bad at all. Pin
John R. Shaw23-Mar-04 12:32
John R. Shaw23-Mar-04 12:32 
GeneralRe: Not bad, nat bad at all. Pin
Ilan Shapira24-Mar-04 9:04
Ilan Shapira24-Mar-04 9:04 
Generalkol ha kavod Pin
adavid10122-Mar-04 21:53
adavid10122-Mar-04 21:53 
Generalummmmm Pin
mystro_AKA_kokie20-Mar-04 20:00
mystro_AKA_kokie20-Mar-04 20:00 
GeneralWritten in VB for VC. Pin
WREY20-Mar-04 7:22
WREY20-Mar-04 7:22 
GeneralRe: Written in VB for VC. Pin
Ilan Shapira21-Mar-04 23:51
Ilan Shapira21-Mar-04 23:51 

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.