T O P I C R E V I E W |
znakeeye |
Posted - Jan 08 2009 : 09:29:40 AM VAX 1649. VS 2008 SP1, XP SP3. "Get content from default IntelliSense" disabled "Include bits of code from surrounding lines" disabled "Apply coloring to" Everything!
I have a CDialog-based class (and a resource). There are some uncommented functions (using '//').
I then add a handler for a new button via the Resource Editor. VC++ takes me to the function and I hover the mouse over it. The tooltip contains garbage. Especially one of the commented functions seems to dominate the tooltip (under the correctly specified headline). |
1 L A T E S T R E P L I E S (Newest First) |
accord |
Posted - Jan 12 2009 : 1:09:59 PM >Especially one of the commented functions seems to dominate the tooltip (under the correctly >specified headline). Is that means you get the correct function name with the correct parameters, and your tooltip contains a lot of commented out functions after that? Can you take a screenshot of the tooltip?
Do you have
VA Options -> Advanced -> Display -> Display comments from source files when available
turned on or off? Visual Assist pairs functions and its comments when this option is turned on. For example:
// Somecomment void SomeFunciton() { [...] } |