JaeHyeok Kim
JaeHyeok Kim

Reputation: 103

Visual studio 2015, Event is empty on property pane

I'm using visual studio 2015 & MFC. (windows 10) Someday, Asynchronized resource & code. When I check control or dialog's property, events list is empty.(message also) I can't automatic create event handler function by clicking button. Please, someone solve this problem.

All project same. Even I create new solution.

Upvotes: 0

Views: 615

Answers (1)

Alen Wesker
Alen Wesker

Reputation: 245

That's because intellisense or its database is disable. I encountered this recently. Check these options, should be:

IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Disable Database = False

IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Disable Intellisence = False

IDE Tools menu -> Options -> Text Editor -> C/C++ -> Advanced -> Rescan Solution Interval = 0

Open an empty VS IDE, fix the options, and reopen the project, everything should be fine.

@Michael Walz~ This guy illustrate this problem clearly enough, dont be nit-pick to non-native speakers

Upvotes: 1

Related Questions