Github
Github

Reputation: 39

Why does intellisense miss classes?

Why are certain classes missing from intellisense?

I like intellisense, it is handy. It is also puzzling. Certain objects are missing and I do not know if I have some setting set incorrectly or that is just "how it is."

    Dim DR As DataGridViewPaintParts "This class appears.
    Dim DR As DataGridViewRow 'This class does not appear, although the others do.
    Dim DR As DataGridViewRowContextMenuStripNeededEventArgs 'This class also appears.

I would presume that the DataGridViewRow is more widely used than the other two, maybe I'm wrong. But in any event, why does it not appear for me?

Upvotes: 1

Views: 33

Answers (1)

Github
Github

Reputation: 39

Hans Passant actually answered the question in his comment:

Note the Common and All tabs at the bottom of the popup window. You need All to see everything. Not terribly consistent in what it filters, this feature was removed in recent VS versions.

Upvotes: 2

Related Questions