Click here to Skip to main content
15,885,919 members
Articles / Programming Languages / C++
Article

"ClassWizard" in VS.NET 2003

Rate me:
Please Sign up or sign in to vote.
3.22/5 (6 votes)
29 May 2003CPOL 58.7K   9   8
Simulate the Class Wizard in VS.NET 2003

Introduction

Visual Studio .NET 2003 brings a lot of enhancements but I sometimes miss the good ol' VC6 Class Wizard. Especially when I want to override say OnInitDialog in a CDialog derived class I find it painful to switch to the Class View, find my class in the list and finally right-click to get the Properties. So if you are like me this macro is for you!

How it works

You can use the macro from a .h or a .cpp file. If called from a .cpp file then the macro switches to the corresponding .h file. Then it searches for:

class <Whatever> 
{

If you are used to put the curly brace on the same line as your class declaration then you might have to change the DTE.Find.FindWhat line and remove the\n in it (see code below).

It then closes the Find dialog, synchronizes the Class View with your class and displays the Properties window. You can then click on Events/Messages/Overrides and select the function you wish to override.

Of course I mapped this to Ctrl+W!

The Macro

And here is the code!

VBScript
Sub ClassWizard()

    Dim a, b As String
    a = DTE.ActiveDocument.FullName()
    tmp = InStr(a, ".cpp")
    If tmp Then
        b = Left(a, Len(a) - 3) + "h"
        DTE.Documents.Open(b, "Text")
    End If

    DTE.ActiveDocument.Selection.StartOfDocument()
    DTE.ExecuteCommand("Edit.Find")
    DTE.Find.FindWhat = "class .*\n\{"
    DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxRegExpr
    DTE.Find.Execute()
    DTE.Windows.Item(Constants.vsWindowKindFindReplace).Close()
    
    DTE.ExecuteCommand("View.SynchronizeClassView")
    DTE.ExecuteCommand("View.PropertiesWindow")

End Sub

License

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


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

Comments and Discussions

 
GeneralEhhhh Pin
Daniel 'Tak' M.31-May-03 1:54
Daniel 'Tak' M.31-May-03 1:54 
GeneralRe: Ehhhh Pin
Nicolas Bonamy31-May-03 10:43
Nicolas Bonamy31-May-03 10:43 
GeneralRe: Ehhhh Pin
Daniel 'Tak' M.31-May-03 10:52
Daniel 'Tak' M.31-May-03 10:52 
GeneralRe: Ehhhh Pin
Nicolas Bonamy31-May-03 20:49
Nicolas Bonamy31-May-03 20:49 
GeneralRe: Ehhhh Pin
Daniel 'Tak' M.1-Jun-03 2:43
Daniel 'Tak' M.1-Jun-03 2:43 
GeneralRe: Ehhhh Pin
Nicolas Bonamy1-Jun-03 3:01
Nicolas Bonamy1-Jun-03 3:01 
GeneralRe: Ehhhh Pin
Daniel 'Tak' M.1-Jun-03 3:48
Daniel 'Tak' M.1-Jun-03 3:48 
GeneralRe: Ehhhh Pin
dEUs[CPP]14-Jun-03 11:15
sussdEUs[CPP]14-Jun-03 11:15 

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.