Click here to Skip to main content
15,887,175 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_949661330-Oct-13 3:45
professionalsteve_949661330-Oct-13 3:45 
QuestionRe: [VB.NET 2008] How to write in a textbox from another thread Pin
Eddy Vluggen30-Oct-13 11:06
professionalEddy Vluggen30-Oct-13 11:06 
AnswerRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_949661330-Oct-13 22:13
professionalsteve_949661330-Oct-13 22:13 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
Eddy Vluggen31-Oct-13 9:11
professionalEddy Vluggen31-Oct-13 9:11 
GeneralRe: [VB.NET 2008] How to write in a textbox from another thread Pin
steve_94966133-Nov-13 21:19
professionalsteve_94966133-Nov-13 21:19 
QuestionHow to read a text file containing Arabic chars in VB.Net 2005? Pin
dgthecodeproject29-Oct-13 1:51
dgthecodeproject29-Oct-13 1:51 
AnswerRe: How to read a text file containing Arabic chars in VB.Net 2005? Pin
Eddy Vluggen29-Oct-13 8:29
professionalEddy Vluggen29-Oct-13 8:29 
QuestionError with Assembly reference Pin
indian14328-Oct-13 7:43
indian14328-Oct-13 7:43 
Hi All,

I have a web application called Web, that is referencing an assembly called Lab, lab is using cplustools.dll and Calinx.dll assemblies.

When we run the application both the dlls are going to be copied in to the web applications bin folder. Upto this its normal. But the Web application throws an error as below. And when we go to the web applications bin folder and remove the "cplustools.dll" dll file and refresh the browser the application runs normally. I am not sure why we need to use cplustools.dll and Calinx.dll
Libraries. But the most important thing here for me is, how can I avoid deleting the cplustools.dll from bin folder and run the application directly without deleting it. What is causing this problem I am unable to understand. I ran the cplustools.dll with assembly walker application to find the dependencies. There is one warning with delay loading of IRFrame.dll except that nothing seems wrong.

Could the delay loading of IEFrame.dll be a problem, please give your advice any kind of help a link, or an advice or snippet, anything would be helpful. Thank you very much in advance.

I am not understanding what could be the reason for this error. Please help me in resolving the error. Any kind of help any link is very helpful. Please help me I am in urgent need. Thanks in advance.

Server Error in '/BPN' Application.
--------------------------------------------------------------------------------
 
The specified module could not be found. (Exception from HRESULT: 0x8007007E) 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
 
Exception Details: System.IO.FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
 
Source Error: 
 
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  
 
Stack Trace: 
 

[FileNotFoundException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
   System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0
   System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +43
   System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +127
   System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +142
   System.Reflection.Assembly.Load(String assemblyString) +28
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +46
 
[ConfigurationErrorsException: The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
   System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +613
   System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +203
   System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +105
   System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +178
   System.Web.Compilation.BuildProvidersCompiler..ctor(VirtualPath configPath, Boolean supportLocalization, String outputAssemblyName) +54
   System.Web.Compilation.CodeDirectoryCompiler.GetCodeDirectoryAssembly(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories, Boolean isDirectoryAllowed) +600
   System.Web.Compilation.BuildManager.CompileCodeDirectory(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories) +125
   System.Web.Compilation.BuildManager.CompileCodeDirectories() +265
   System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +320
 
[HttpException (0x80004005): The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
   System.Web.Compilation.BuildManager.ReportTopLevelCompilationException() +58
   System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +512
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters) +729
 
[HttpException (0x80004005): The specified module could not be found. (Exception from HRESULT: 0x8007007E)]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +8986035
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +85
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +333

Thanks & Regards,

Abdul Aleem Mohammad
St Louis MO - USA

AnswerRe: Error with Assembly reference Pin
Eddy Vluggen29-Oct-13 8:23
professionalEddy Vluggen29-Oct-13 8:23 
GeneralRe: Error with Assembly reference Pin
indian14329-Oct-13 13:21
indian14329-Oct-13 13:21 
GeneralRe: Error with Assembly reference Pin
Eddy Vluggen30-Oct-13 11:02
professionalEddy Vluggen30-Oct-13 11:02 
GeneralRe: Error with Assembly reference Pin
indian14331-Oct-13 6:48
indian14331-Oct-13 6:48 
GeneralRe: Error with Assembly reference Pin
Eddy Vluggen31-Oct-13 9:34
professionalEddy Vluggen31-Oct-13 9:34 
Question[VB.NET 2008] How to use DeviceIoControl function? Pin
steve_949661328-Oct-13 3:06
professionalsteve_949661328-Oct-13 3:06 
AnswerRe: [VB.NET 2008] How to use DeviceIoControl function? Pin
David Knechtges28-Oct-13 3:14
David Knechtges28-Oct-13 3:14 
GeneralRe: [VB.NET 2008] How to use DeviceIoControl function? Pin
steve_949661328-Oct-13 3:47
professionalsteve_949661328-Oct-13 3:47 
GeneralRe: [VB.NET 2008] How to use DeviceIoControl function? Pin
David Knechtges29-Oct-13 3:13
David Knechtges29-Oct-13 3:13 
GeneralRe: [VB.NET 2008] How to use DeviceIoControl function? Pin
steve_949661329-Oct-13 4:55
professionalsteve_949661329-Oct-13 4:55 
Questiontimer events, vb.net Pin
srinivasankrishnaa24-Oct-13 6:08
srinivasankrishnaa24-Oct-13 6:08 
AnswerRe: timer events, vb.net Pin
Eddy Vluggen24-Oct-13 8:09
professionalEddy Vluggen24-Oct-13 8:09 
GeneralRe: timer events, vb.net Pin
srinivasankrishnaa27-Oct-13 3:06
srinivasankrishnaa27-Oct-13 3:06 
GeneralRe: timer events, vb.net Pin
Dave Kreskowiak27-Oct-13 5:34
mveDave Kreskowiak27-Oct-13 5:34 
GeneralRe: timer events, vb.net Pin
srinivasankrishnaa29-Oct-13 7:05
srinivasankrishnaa29-Oct-13 7:05 
GeneralRe: timer events, vb.net Pin
Dave Kreskowiak29-Oct-13 10:17
mveDave Kreskowiak29-Oct-13 10:17 
GeneralRe: timer events, vb.net Pin
srinivasankrishnaa30-Oct-13 7:04
srinivasankrishnaa30-Oct-13 7:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.