Link to home
Start Free TrialLog in
Avatar of Fordraiders
FordraidersFlag for United States of America

asked on

Intellisense is not working when i hover over variables.

Office 365
in debugging mode and stepping through code,
Intellisense is not working when i hover over variables.

Unless an error occurs ?

Just started doing this recently


Thanks
fordraiders
Avatar of John Tsioumpris
John Tsioumpris
Flag of Greece image

Searching it a bit it seems that something in your code is probably wrong that's why the Intellisense is not firing.
Do a compile of your application and something should popup.
If not do a Decompile and a compile...this should find the culprit.....i had similar case with bizare errors recently.
As join mentioned, the first suspect that should come to mind if intellisense is not working is that your code does not compile.  That is true for breakpoint conditions in running code, or code writing in design.

Try it, in design mode, create a non-compile situation, and then see if "currentdb." brings up the components of intellisense for "currentdb" - it shouldn't.
Avatar of Fordraiders

ASKER

everything compiles ok...

sorry, its the "mouse hover over"(variables) that is not working...Sorry, its the intellisense for that debug part that is not working. normal intellisense is working ok ..
ASKER CERTIFIED SOLUTION
Avatar of Anders Ebro (Microsoft MVP)
Anders Ebro (Microsoft MVP)
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks