Click here to Skip to main content
Licence CPOL
First Posted 29 May 2003
Views 45,219
Bookmarked 9 times

"ClassWizard" in VS.NET 2003

By | 29 May 2003 | Article
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!

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)

About the Author

Nicolas Bonamy

Team Leader

France France

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralEhhhh PinmemberTak1:54 31 May '03  
GeneralRe: Ehhhh PinmemberNicolas Bonamy10:43 31 May '03  
GeneralRe: Ehhhh PinmemberTak10:52 31 May '03  
GeneralRe: Ehhhh PinmemberNicolas Bonamy20:49 31 May '03  
GeneralRe: Ehhhh PinmemberTak2:43 1 Jun '03  
GeneralRe: Ehhhh PinmemberNicolas Bonamy3:01 1 Jun '03  
GeneralRe: Ehhhh PinmemberTak3:48 1 Jun '03  
GeneralRe: Ehhhh PinsussdEUs[CPP]11:15 14 Jun '03  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 30 May 2003
Article Copyright 2003 by Nicolas Bonamy
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid