Home All Groups Group Topic Archive Search About

How to display Summary in object browser

Author
26 May 2006 8:01 PM
hulinning
Hi all,
I would like to dipslay additional information to my classes in my library
like MS object in the object browser.
Is there a way to do this?

Thanks a lot

Author
27 May 2006 6:22 AM
sebastieng
Hi,

I suppose you are searching for that:

namespace UserInactivityMonitoring
{
    /// <summary>
    /// Class for monitoring user inactivity without plattform
    /// invokes by analyzing windows messages
    /// </summary>

..........
}

Here is another example:
        /// <summary>
        /// Processes windows messages to detect user activity
        /// </summary>
        /// <param name="m">
        /// <see cref="Message"/> object with the current message
        /// </param>
        /// <returns>
        /// Always returns false to allow further processing of all messages
        /// </returns>

You commentaries will automatically be displayed in class explorer.
You might search for summary in help's index.

bye

Show quote
"hulinning" wrote:

> Hi all,
> I would like to dipslay additional information to my classes in my library
> like MS object in the object browser.
> Is there a way to do this?
>
> Thanks a lot
Author
31 May 2006 7:19 PM
hulinning
Thanks for your comments.

Is that possible to do this in VB.NET?


Show quote
"sebastieng" wrote:

> Hi,
>
> I suppose you are searching for that:
>
> namespace UserInactivityMonitoring
> {
>     /// <summary>
>     /// Class for monitoring user inactivity without plattform
>     /// invokes by analyzing windows messages
>     /// </summary>
>
> .........
> }
>
> Here is another example:
>         /// <summary>
>         /// Processes windows messages to detect user activity
>         /// </summary>
>         /// <param name="m">
>         /// <see cref="Message"/> object with the current message
>         /// </param>
>         /// <returns>
>         /// Always returns false to allow further processing of all messages
>         /// </returns>
>
> You commentaries will automatically be displayed in class explorer.
> You might search for summary in help's index.
>
> bye
>
> "hulinning" wrote:
>
> > Hi all,
> > I would like to dipslay additional information to my classes in my library
> > like MS object in the object browser.
> > Is there a way to do this?
> >
> > Thanks a lot
Author
31 May 2006 9:55 PM
sebastieng
regarding this article :
http://msdn2.microsoft.com/en-us/library/ms172653(VS.80).aspx
it seems to be available in VS2k5.

About VS 2k3, I was not able to find anything about that.... sorry

Bye
Sébastien

Show quote
"hulinning" wrote:

> Thanks for your comments.
>
> Is that possible to do this in VB.NET?
>
>
> "sebastieng" wrote:
>
> > Hi,
> >
> > I suppose you are searching for that:
> >
> > namespace UserInactivityMonitoring
> > {
> >     /// <summary>
> >     /// Class for monitoring user inactivity without plattform
> >     /// invokes by analyzing windows messages
> >     /// </summary>
> >
> > .........
> > }
> >
> > Here is another example:
> >         /// <summary>
> >         /// Processes windows messages to detect user activity
> >         /// </summary>
> >         /// <param name="m">
> >         /// <see cref="Message"/> object with the current message
> >         /// </param>
> >         /// <returns>
> >         /// Always returns false to allow further processing of all messages
> >         /// </returns>
> >
> > You commentaries will automatically be displayed in class explorer.
> > You might search for summary in help's index.
> >
> > bye
> >
> > "hulinning" wrote:
> >
> > > Hi all,
> > > I would like to dipslay additional information to my classes in my library
> > > like MS object in the object browser.
> > > Is there a way to do this?
> > >
> > > Thanks a lot

AddThis Social Bookmark Button