Re: Display the <summary> in VB

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance

From: Peter Foot [MVP] (feedback_at_nospam-inthehand.com)
Date: 05/21/04


Date: Fri, 21 May 2004 17:49:00 +0100

You can if you use the VBCommenter powertoy. This will generate xml comment
files for your code in much the same way as you can do out of the box in C#.
You can download the powertoy from the workspace:-
http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd

Peter

-- 
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org
"skicow" <anonymous@discussions.microsoft.com> wrote in message 
news:9FA41F0F-C8BF-4962-8094-B302C6273A16@microsoft.com...
> Hi,
>
> I know I can get the comment for a method to display when I mouse over it 
> in VS.NET 2003 if I place the following code before the method:
>
> /// <summary>
> /// Sort grid by column
> /// </summary>
> /// <param name="col"></param>
>
> But how can I do this in VB? Can I do it in VB?
>
> Thanks,
> skicow