Author |
Topic |
|
blinko135
Starting Member
1 Posts |
Posted - Jan 07 2015 : 9:54:41 PM
|
When I start up my solution, I get a Visual Studio message saying: "An exception has been encountered. This may be caused by an extension.
You can get more information by examining the file: .../VisualStudio/11.0/ActivityLog.xml"
Looking at the xml, I see a few of these errors:
<entry> <record>328</record> <time>2015/01/08 03:41:41.703</time> <type>Error</type> <source>Editor or Editor Extension</source> <description>System.BadImageFormatException: Could not load file or assembly 'VAX.Interop.dll' or one of its dependencies. is not a valid Win32 application. (Exception from HRESULT: 0x800700C1)#x000D;#x000A;File name: 'VAX.Interop.dll'#x000D;#x000A; at bf.CreateTagger[T](ITextView textView, ITextBuffer buffer)#x000D;#x000A; at Microsoft.VisualStudio.Text.Tagging.Implementation.TagAggregator`1.GatherTaggers(ITextBuffer textBuffer)#x000D;#x000A;#x000D;#x000A;</description> </entry>
This is what I am running: VA_X.dll file version 10.9.2052.0 built 2014.11.05 DevEnv.exe version 11.0.61030.0 Premium msenv.dll version 11.0.61030.0 Comctl32.dll version 6.10.7601.17514 Windows 7 6.1 Build 7601 Service Pack 1 (remote) 16 processors (x86-64, WOW64) Language info: 1252, 0x409 |
|
accord
Whole Tomato Software
United Kingdom
3287 Posts |
Posted - Jan 13 2015 : 5:15:24 PM
|
This problem can be due to an invalid cache built by Visual Studio. If you delete the cache it may fix the issue: Close Visual Studio and then delete all files including sub directories: C:\\Users\\<username>\\AppData\\Local\\Microsoft\\VisualStudio\\11.0\\ComponentModelCache\\* and all .cache files in the following directory and its subdirectories: C:\\Users\\<username>\\AppData\\Local\\Microsoft\\VisualStudio\\11.0\\Extensions\\*.cache Visual Studio will rebuild those files when it starts up, and should resolve your problem.
Does this help? |
|
|
rburnsides
New Member
USA
2 Posts |
Posted - Feb 06 2015 : 10:38:28 AM
|
I am experiencing the same warnings when starting Visual Studio. If I then continue to use Visual Studio, it will at some point crash while I am using the editor. Clearing the caches did not resolve the problem in my case.
Here is the info from the crash:
Problem Event Name: APPCRASH Application Name: devenv.exe Application Version: 11.0.50727.1 Application Timestamp: 5011ecaa Fault Module Name: KERNELBASE.dll Fault Module Version: 6.1.7601.18409 Fault Module Timestamp: 53159a86 Exception Code: e0434352 Exception Offset: 0000c42d OS Version: 6.1.7601.2.1.0.256.4 Locale ID: 1033 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online: http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline: C:\\Windows\\system32\\en-US\\erofflps.txt
|
|
|
rburnsides
New Member
USA
2 Posts |
Posted - Feb 06 2015 : 10:44:15 AM
|
I forgot to include my VAX info:
VA_X.dll file version 10.9.2052.0 built 2014.11.05 DevEnv.exe version 11.0.50727.1 Professional msenv.dll version 11.0.50727.1 Comctl32.dll version 6.10.7601.17514 Windows 7 6.1 Build 7601 Service Pack 1 16 processors (x86-64, WOW64) Language info: 1252, 0x409
Platform: Project defined Stable Includes: C:\\Program Files (x86)\\Windows Kits\\8.0\\Include\\winrt; C:\\Program Files (x86)\\Windows Kits\\8.0\\Include\\shared; C:\\Program Files (x86)\\Windows Kits\\8.0\\Include\\um; C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\atlmfc\\include; C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\include; C:\\Program Files (x86)\\Windows Kits\\8.0\\include;
Other Includes:
Stable Source Directories: C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\crt\\src; C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\atlmfc\\src\\atl; C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\atlmfc\\src\\mfcm; C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC\\atlmfc\\src\\mfc; C:\\Program Files (x86)\\Windows Kits\\8.0\\include;
|
|
|
feline
Whole Tomato Software
United Kingdom
18983 Posts |
Posted - Feb 06 2015 : 9:37:30 PM
|
This is nasty, and very unwelcome. Can you try disabling and then enabling VA please, by going into:
IDE Tools menu -> Extensions and Updates...
finding and disabling Visual Assist, which will require an IDE restart. Then go back in and enable Visual Assist.
Does this make any difference?
Can you check and see if this is a solution specific problem, by making a new, default solution and see if you still get the problem?
If none of this helps, can you please look in:
IDE Tools menu -> Extensions and Updates...
what extensions do you have installed? On my test system I have:
Microsoft Advertising SDK for Windows 8.1 Microsoft Advertising SDK for Windows Phone 8.1 XAML Microsoft AST.NET and Web Tools NuGet Package Manager Visual Assist Visual Studio Extensions for Windows Library for JavaScript
I am wondering if this could be an interaction problem between VA and another installed extension. |
zen is the art of being at one with the two'ness |
|
|
ryanhuang
Starting Member
1 Posts |
Posted - May 12 2015 : 9:36:29 PM
|
I have met the same trouble, according to the log file "ActivityLog.xml " I checked VAX.Interop.dll, but it was still exist, the only reason why it can not be loaded is that the related dlls were lost. after using tool "dependency walk"( http://www.dependencywalker.com/) I found some dlls (msvcr100.dll, msvcp100.dll) were not exist, after that I got vc runtime library "Vc Redist " and installed them, the problem was fixed. |
Edited by - ryanhuang on May 12 2015 9:39:11 PM |
|
|
feline
Whole Tomato Software
United Kingdom
18983 Posts |
Posted - May 12 2015 : 10:50:46 PM
|
Thank you for the update, I am glad you were able to find and fix the problem. The link is very interesting, thank you. It is good to know there is a modern version of depends from VC6 out there I have made a note of this link for future reference. |
zen is the art of being at one with the two'ness |
|
|
|
Topic |
|