Results 1 to 4 of 4

Thread: Code Comment

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    May 2001
    Location
    Thailand
    Posts
    221

    Question Code Comment

    VB Code:
    1. /// <summary>
    2.         /// Adds a new table to the database with specified columns.
    3.         /// </summary>
    4.         /// <param name="name">
    5.         /// The name of the table to create.
    6.         /// </param>
    7.         /// <param name="columnInfos">
    8.         /// An array of at least one SqlColumnInformation object with the column information filled out.
    9.         /// </param>
    10.         /// <returns>
    11.         /// If the operation succeeded, the return value is the table created.
    12.         /// </returns>
    Here is code in C# that we add before member declaration.It would be show when we use in VS.NET (Intellisense feature). What should we do if we want to do in VB.NET

    Thank you,
    Teeravee Sirinapasawasdee
    Gestalt IT Consulting Group
    Growth Your Business With e-Process

  2. #2
    Addicted Member Sheppe's Avatar
    Join Date
    Sep 2002
    Location
    Kelowna, BC
    Posts
    245

    Re: Code Comment

    Originally posted by pound
    VB Code:
    1. /// <summary>
    2.         /// Adds a new table to the database with specified columns.
    3.         /// </summary>
    4.         /// <param name="name">
    5.         /// The name of the table to create.
    6.         /// </param>
    7.         /// <param name="columnInfos">
    8.         /// An array of at least one SqlColumnInformation object with the column information filled out.
    9.         /// </param>
    10.         /// <returns>
    11.         /// If the operation succeeded, the return value is the table created.
    12.         /// </returns>
    Here is code in C# that we add before member declaration.It would be show when we use in VS.NET (Intellisense feature). What should we do if we want to do in VB.NET

    Thank you,
    Right now VB.NET does not have built-in support for this feature. Fortunately, some fine gent out there wrote the add-in necessary to do this. Go to http://www.fesersoft.com/Products/default.asp and look at the top entry on the page: "VB.NET XML Comments Creator".

    HTH
    [vbcode]
    On Error Goto Hell
    [/vbcode]
    Sheppe Pharis, MCSD
    Check out http://www.vb-faq.com
    Click here for access to the free Code-Express source code and component sharing network for VB6
    Want a better way to skin your .NET applications? Click here!

  3. #3
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Couple of other tools here also :
    http://www.vbforums.com/showthread.p...hreadid=274783

  4. #4
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    I posted this yesterday and it's still in the top 10 threads....

    http://vbforums.com/showthread.php?threadid=274783

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width