This should be simple...

I have a component that I created in a VB 2005 project with a method named ProcessClick. I placed the component on a form and named it pnlTest. If I go to the FormLoad event handler and type in pnlTest(dot) and look at what intelisense gives me, I show the ProcessClick method. However, when I hover over the method, I don't see the description I set for it. How do I make the description show???

Here is the code I currently have to set the description:
Code:
    <System.ComponentModel.Description("Generates a System.Windows.Forms.Control.Click event.")> _
    Public Sub PerformClick()
        Call OnClick(Nothing)
    End Sub