Peter
Fri Dec 19 07:11:25 CST 2003
You could try the VBCommenter PowerToy:-
http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=112b5449-f702-46e2-87fa-86bdf39a17dd
This is a Visual Basic plugin which allows you to create XML comments within
your code (a feature built into C#), these accompanying XML files are used
to populate the Intellisense and ObjectBrowser windows in Visual Studio.
Peter
--
Peter Foot
Windows Embedded MVP
OpenNETCF.org Senior Advisor
www.inthehand.com | www.opennetcf.org
"Craig Hardcastle" <email@craighardcastle.com> wrote in message
news:39e1682.0312190329.3b0a7d8e@posting.google.com...
> hi,
>
> im wanting to add comments to my sub's and functions so that when you
> call them, in the hint/tooltip that appears, you get an explaination
> for each parameter.
>
> for example if you type the follow:
>
> string.Copy("hello")
>
> you get a hint/tooltip:
>
> -------------------------------
> |Copy(str As String) As String|
> |str: |
> |The Sytem.String to copy. |
> -------------------------------
>
> is there anyway i can do this for my parameters in my subs and
> functions?
>
> thanks,
>
> craig.