file not found exception
-
I develope desktop app and use develope dataaccess component to handel the sql server but every time i try to use the programes i got this exception. and i am sure that the component in the same folder with the programes and i refrenced it in the visual studio "File or assembly name DataAccess, or one of its dependencies, was not found. File name: "DataAccess"" Please help hoho
-
I develope desktop app and use develope dataaccess component to handel the sql server but every time i try to use the programes i got this exception. and i am sure that the component in the same folder with the programes and i refrenced it in the visual studio "File or assembly name DataAccess, or one of its dependencies, was not found. File name: "DataAccess"" Please help hoho
Have you attempted debugging? Can you post code where the error message appears?
-
I develope desktop app and use develope dataaccess component to handel the sql server but every time i try to use the programes i got this exception. and i am sure that the component in the same folder with the programes and i refrenced it in the visual studio "File or assembly name DataAccess, or one of its dependencies, was not found. File name: "DataAccess"" Please help hoho
This exception is thrown when one or more assemblies is not located by Fusion using the standard, documented paths. Simply put: you are missing a file referenced at compile time but is no where to be found at runtime. Find the assembly with
DataAccess
in it and make sure it can be located at runtime. Beyond that make sure that assembly has all of its dependant assemblies locatable as well.