Le réseau pour les développeurs > Forums - Accueil > Visual Basic General > How can I add the Intellisense function into my own Windows Form Application?
Poser une questionPoser une question
 

TraitéeHow can I add the Intellisense function into my own Windows Form Application?

  • dimanche 3 juin 2007 01:58Pisceswzh Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     

    I am looking forward to add the feature like the Intellisense in the VS2005 to enhance my user experience of my application.

     

    I did some search, but unfortunately, most articles are introducing the Intellisense feature in the VS2005 instead of giving u any advice on how to make one.

     

    Any related resources are appriceated. Thank you very much!!

     

    Tom

Réponses

  • dimanche 3 juin 2007 17:06spotty Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     Traitée

    Intellisense is built into 2005 for existing classes/methods etc.  

     

    So if you add a class/method it should just show up in intellisense - if your asking about how to get things like the additional information shown in tooltips etc.   Then just prior to the method or class declaration type three single quotes '''

     

    This will cause some xml to appear which you can enter the relevent information into - such as details on the method and its parameters.   After you build the project, these will be reflected in the Intellisense.    This feature is known as XML comments and was added in 2005.

     

    Hope that helps a bit.

     

     

     

    If your asking about getting

Toutes les réponses

  • dimanche 3 juin 2007 17:06spotty Médailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateurMédailles de l'utilisateur
     Traitée

    Intellisense is built into 2005 for existing classes/methods etc.  

     

    So if you add a class/method it should just show up in intellisense - if your asking about how to get things like the additional information shown in tooltips etc.   Then just prior to the method or class declaration type three single quotes '''

     

    This will cause some xml to appear which you can enter the relevent information into - such as details on the method and its parameters.   After you build the project, these will be reflected in the Intellisense.    This feature is known as XML comments and was added in 2005.

     

    Hope that helps a bit.

     

     

     

    If your asking about getting