Link to home
Start Free TrialLog in
Avatar of bergm57
bergm57Flag for United States of America

asked on

Looking for my context menu VS 2008

We are working through an application in VS 2008 with C++ and have a couple of strange issues that are occurring.  One is  that when we open a header file and try to Right Click to get the context menu the hourglass of death comes up and the application stops responding.  We have to use the kill box and start it over before we can work again.  
Also, the Class Diagram does not update when we change a property in the header file.  For example if we change mfields to metafields it never updates on the class diagram.  It remains mfields no matter what we do.  Your assistance will be greatly appreciated.
Avatar of AndyAinscow
AndyAinscow
Flag of Switzerland image

VS2008 seems to have a number of bugs - make certain you have the latest service pack installed.  
Avatar of bergm57

ASKER

We have it up to SP1  are there other updates that you are aware of?  How do you ever know you have the latest?
>>We have it up to SP1  are there other updates that you are aware of?  
No.

>>How do you ever know you have the latest?
Look at the msdn site occasionally, look in e-zines.  (I don't know of a way to get the release information of SP's sent directly)
Are you working with some versioning system? Or is the drive you were working on is a network drive?

If the first you never should check-in some temporary (like .ncb file) or user-specific (like .suo) files. These hardly will work if checked-in by one user and checked-out by another one even if they were using the same machine. So, only sources, .rc, .vcproj, .sln  should be under source control but nothing else.

You also should get rid of all temporaries some time. That is all other than the ones you put under source control, especially .ncb, .aps, .pch, .pdb, .ilk, and more. Also delete both Debug folder and Release Folder occasionally. Even the .suo file (hidden file) would be newly created when missing. You might move it to another folder to check whether it was the cause for your issues and move it back if not.

If the issues don't were solved, but only were with one project but not with all, you might rename your current project and folder,and create a new one from the scratch best by using a template project. Delete and remove the generated sources beside of the project file .vcproj. Move all sources from old project folder to new one and add them to the new project. Always check whether the problems didn't arise again after each step.
Avatar of bergm57

ASKER

Hi thanks for commenting. We are not using a versioning system. I have 1 programmer working on a project on his desktop.  So, I will have him cleanup the Debug and Release folder.  Move the .suo and try it then.  
Thanks!
ASKER CERTIFIED SOLUTION
Avatar of itsmeandnobodyelse
itsmeandnobodyelse
Flag of Germany 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
Avatar of bergm57

ASKER

That took care of our issues. Thank you.  We cleared the temps and it is back to normal. We appreciate you for sharing your expertise.