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

Code usability

Rate me:
Please Sign up or sign in to vote.
1.13/5 (27 votes)
16 Dec 20021 min read 140.6K   330   13   16
Macro to add description to any function written by developers.

This VB procedure helps any developer to easily add comments to his/her code. The comments including some function details like function name, input parameter and return value. Also, the date when the function was written and the author name. All are retrieived automatically and it saves the developer time.

How does it work?

  • The developer marks the function she wants to remark.
  • The code parses the selected text and gets all of the relevant data from the function (i.e. name,input and return value)
  • The description should be filled by the author
  • Date is written as the current date
  • Author is taken by the Windows login name

How can you use it?

    • Open VC
    • Go to Tools->Customize->Commands->Macros
    • On the right pane click on the function AddFunctionDescription (should be the 1'st one), then drag it to the toolbar.
    • You should see this function in the toolbar
    • Go to Tools->Macors->Macro explorer
    • In the tree, open Samples->DevStudio6Editor
    • Right Click on AddFunctionDescription and choose Edit
    • Replace the current code of this procedure with the one you have in the attached zip file.
    • Save all the changes in all of the IDEs
    • Select any function you have in the code (select the whole row)
    • Click on the AddFunctionDescription button in the toolbar
    • You will see the proper remark
    • Sample: Supposed that you have the function void Foo(int bar) written by a guy
    • named Henry. This macro will add the next lines just below you selected
    • function.
    • // ********************************************************************
    • // Function name : Foo
    • // Description :
    • // Return type : void
    • // Argument : bar
    • //
    • // Date : 1:10PM 12/13/2002
    • // Author : henry
    • // ********************************************************************

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
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

 
QuestionWhere is a StripTabs? Pin
_Samael_16-Dec-02 1:39
_Samael_16-Dec-02 1: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.