Click here to Skip to main content
Licence 
First Posted 23 Jul 2002
Views 54,992
Bookmarked 15 times

Visual Studio .NET- Old style member function wizard

By | 23 Jul 2002 | Article
Modifies the new VS7 Member Function wizard to add a member function without using the parameter list

Sample Image - memwiz.jpg

Introduction

I switched from VS6 to VS7 and I wondered if it can be true that i can only add a member function by using the new "Add member function" Wizard. I searched for the sourcecode of the add member function wizard and found it in my Visual Studio directory in \Program Files\Microsoft Visual Studio .NET\VC7\VCWizards\MemFunctionWiz\HTML\default.html. I changed a few values and tested my changes in a new opened instance of VS7 and it worked. I added a checkbox, and changed a few things, and now I can enter a name of a function into the function name textbox like this "TestFunction(int nTest, BOOL bTest)", like good old VS6. It saves a lot of time. The checkbox exists to switch from old-style to new-style. If it is disabled I have to use the param list to define a new function.

  1. Open the default.html in notepad.exe

  2. Scroll to:

    <TR>
    <TD VALIGN="MIDDLE" HEIGHT="23" WIDTH="12">
     
    </TD>
    <TD VALIGN="TOP" HEIGHT="23">
    
    //Add this
    <input ID="CHECKBOXOLDSTYLE" type="checkbox" CHECKED>
    <LABEL FOR="CHECKBOXOLDSTYLE" 
    ID="OLDSTYLE_LABEL">Enter old-style function name</LABEL>
    //<-- end add
    
     
    </TD>
    <TD VALIGN="MIDDLE" HEIGHT="23" WIDTH="75">
    <BUTTON CLASS="BUTTONS" ID="FinishBtn" 
    onClick="OnFinish(document);">Fertig stellen</BUTTON>
    </TD>
    <TD VALIGN="MIDDLE" HEIGHT="23" WIDTH="4">
     
    </TD>
    <TD VALIGN="MIDDLE" HEIGHT="23" WIDTH="75">
    <BUTTON CLASS="BUTTONS" ID="CancelBtn" 
    onClick="window.external.Finish(document, 'cancel');">Abbrechen</BUTTON>

    If you save the default.htm and start a new instance of VS7, a checkbox appears on the bottom-left.

  3. Scroll to:

    function Validate(obj)
    {
        try
        {
            var bValid = true;
            switch(obj.id)
            {
                case "FUNCTION_NAME":
                {
    // Change the code to:
                    var strNameWithParamList = "";
                    if( CHECKBOXOLDSTYLE.checked )
                    {
                        strNameWithParamList = FUNCTION_NAME.value;
                    }
                    else
                    {
                        strNameWithParamList = FUNCTION_NAME.value + "(" +
                                               strParameters + ")";
                    }
    // <- end change
                    window.external.AddSymbol("FUNCTION_FULLNAME", 
                                              strNameWithParamList);
                    bValid = window.external.ParentObject.ValidateMember.....
  4. Save the file and try in VS7

  5. Finished, now you can enter a member function the old way.

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

About the Author

Moritz Leutenecker

Web Developer

Germany Germany

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
GeneralI'll stay away from VC7 only because of the bugs PinmemberDavidi7:31 4 Aug '02  
GeneralGood article, but... PinmemberBin11:46 24 Jul '02  
GeneralRe: Good article, but... PinmemberKarstenK21:12 24 Jul '02  
GeneralRe: Good article, but... PinsussAnonymous11:58 25 Jul '02  
GeneralRe: Good article, but... PinmemberBin12:05 25 Jul '02  
GeneralRe: Good article, but... PinsussAnonymous20:25 25 Jul '02  
GeneralRe: Good article, but... PinmemberMichael P Butler12:06 25 Jul '02  
GeneralRe: Good article, but... PinmemberJörgen Sigvardsson13:56 25 Jul '02  
GeneralRe: Good article, but... PinmemberBin14:28 25 Jul '02  

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
Web01 | 2.5.120517.1 | Last Updated 24 Jul 2002
Article Copyright 2002 by Moritz Leutenecker
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid