There is a .NET application I run fine for a long time, then due to change project I stop using it for a while. Now I need to use it again but getting the following exception:
) 2009-11-23 17:30:43,593 [2348] ERROR AOM [] - BeastManager.OnAuthentication Failed 2009-11-23 17:30:46,671 [Main Thread] ERROR [] - An exception occurred while loading assembly mfcm80 Exception: System.IO.FileNotFoundException Message: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Source: mscorlib at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.Load(String assemblyString) 2009-11-23 17:30:46,671 [Main Thread] ERROR [] - An exception occurred while initializing the launchbar. Exception: System.IO.FileNotFoundException Message: The specified module could not be found. (Exception from HRESULT: 0x8007007E) Source: mscorlib at System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) at System.Reflection.Assembly.Load(String assemblyString) I've checked there is file mfcm80.dll... but it still fail... how can I approach this problem
