Can someone tell me what exactly happens when I right click a function name and click on ‘Go to Definition’? The reason why I am asking this is because I created a new function in my project, and while performing the aforementioned operation I get a message that the symbol was found found. Any ideas how I can fix this?
Share
The IDE looks in the IntelliSense database for the symbol and reports this message if it can’t find it. The usual advice is to delete the hidden .ncb file in the project directory so the IDE is forced to re-scan the code to rebuild the database. That usually worked in VS6, not so much in later editions. Finding the line of code where the IntelliSense parser choked on your code isn’t easy.
VS2010 will contain a completely redone IntelliSense parser, hopefully much improved.