'system.IO.FileNotFoundException' error for one option in vb project

newvbbeginner

New member
Joined
Aug 10, 2012
Messages
1
Programming Experience
Beginner
Hi all,

I am new to vb.net and vb.net project (developed using visual basic .net and .net 1.1) on which i am working now. For some reason i get 'An unhandled exception of type 'system.IO.FileNotFoundException' occurred in system.windows.forms.dll Additional information: The specified module could not be found' error for one option in this software at the line CType(Me.ImgScan, System.ComponentModel.ISupportInitialize).EndInit() in source code.

The form in which i get this error has an option to scan documents from scanner. I think this error is related to something between this scanner and form is causing this issue, but i don't know how to fix it.

Can any one please tell me how to fix this issue
smile.gif
 
First up, if you're using .NET 1.1 then why does your profile say .NET 2.0? Are you using VB.NET 2003 or a later version?

As for the question, presumably the scanner provides a DLL to allow your application to access its functionality. You need to make sure that that file is available, especially if you have referenced it in your project.
 
Back
Top