Argument Description

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Zorpiedoman

    #1

    Argument Description

    How do you add a description for theuser to see in the development
    environment to describe each argument being passed into a procedure?


    This does NOT work, but you get the idea of what I want to do:


    Public Sub PrintName(<Desc ription("Enter Your Name")>YourName as String)
    msgbox YourName
    End Sub


    --
    --Zorpie
  • Herfried K. Wagner [MVP]

    #2
    Re: Argument Description

    "Zorpiedoma n" <nowheremane@be atles.com> schrieb:[color=blue]
    > How do you add a description for theuser to see in the development
    > environment to describe each argument being passed into a procedure?[/color]

    Adding IntelliSense tooltips, XML comments, and documentation
    <URL:http://dotnet.mvps.org/dotnet/faqs/?id=tooltipsxml documentation&l ang=en>

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://classicvb.org/petition/>

    Comment

    • Cor Ligthert [MVP]

      #3
      Re: Argument Description

      Zorpiedoman,

      If you plan to go to VS2005 in that it is standard and very easy to do.

      Cor

      "Zorpiedoma n" <nowheremane@be atles.com> schreef in bericht
      news:138BA845-BC39-4B16-A868-340D7561847C@mi crosoft.com...[color=blue]
      > How do you add a description for theuser to see in the development
      > environment to describe each argument being passed into a procedure?
      >
      >
      > This does NOT work, but you get the idea of what I want to do:
      >
      >
      > Public Sub PrintName(<Desc ription("Enter Your Name")>YourName as String)
      > msgbox YourName
      > End Sub
      >
      >
      > --
      > --Zorpie[/color]


      Comment

      Working...