Results 1 to 7 of 7

Thread: dll and tooltip?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    top of the mountain
    Posts
    234

    Question dll and tooltip?

    I built dll in vb.net and when I use that class in Test project tooltip for explanation class's methods do not show like for other .net class. My question is: how to write my class to show tooltip explanations for class methods? If somebody don't understand look at the attach picture.

    regards
    Attached Images Attached Images  

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    this is not supported in VB but in C# .

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    top of the mountain
    Posts
    234
    Ok, how to do this in C#?

    regards

  4. #4
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    ok here is VB.NET way .I've not tried it though !

  5. #5
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    ooops just forgot the link ! here you go .

  6. #6
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Originally posted by janis
    Ok, how to do this in C#?
    regards
    easy .just type description of your namespace or class or void between <summary> and </summary>

    VB Code:
    1. namespace NameFormats
    2. {
    3. ///<summary>
    4. ///this name space contains one void that prints first , middle ,
    5. ///last names in differentformats
    6. ///</summary>
    7.  
    8.    class PrintNames
    9.     {
    10.     ///<summary>
    11.     ///this void takes first , middle , last names
    12.                ///inputfrom the user and
    13.               ///print them in variant orders
    14.              ///</summary>
    15. .
    16. .
    17. .
    18.             } //end void
    19.               }// end class
    20.                     }

  7. #7

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    top of the mountain
    Posts
    234
    Tks. Pirate

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