473,714 Members | 2,572 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Unhandled Exception: System.IO.FileN otFoundExceptio n: File or assembly name xx or one of its dependencies, was not found

Hi guys

Do you ever get the exception in Managed C++? How can I know which file or
dll is missed?
Dec 16 '05 #1
3 9081
James,

Have you checked the FileName property of the FileNotFoundExc eption that
is thrown?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"James" <ja********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Hi guys

Do you ever get the exception in Managed C++? How can I know which file or
dll is missed?

Dec 16 '05 #2
This is a demonstrate

myc++.lib is my API library, which using /delayload:avrt. dll to compile.
When I using "cl /clr /LD xxx.cpp /link /delayload:avrt. dll myc++.lib"
to compile the xxx.dll, test3.exe will work abnormal. But I remove
/delayload:avrt. dll, test3 will throw FileNotFoundExc eption exception
cl /clr /LD xxx.Definition. cpp // the file defines the global enum and
struct value type
cl /clr /LD xxx.cpp /link myc++.lib // xxx.cpp using xxx.Definition. dll and
using functions from myc++.lib
csc test.cs /reference:xxx.D efinition.dll /reference:xxx.d ll
test.exe
Unhandled Exception: System.IO.FileN otFoundExceptio n: File or assembly name
xxx, or one of its dependencies, was not found.
File name: "xxx"
at MyClass.Main(St ring[] args)

=== Pre-bind state information ===
LOG: DisplayName = xxx, Version=0.0.0.0 , Culture=neutral ,
PublicKeyToken= null (Fully-specified)
LOG: Appbase = D:\tmp\C#Test\T est2\
LOG: Initial PrivatePath = NULL
Calling assembly : Test3, Version=0.0.0.0 , Culture=neutral ,
PublicKeyToken= null.

===

LOG: Application configuration file does not exist.
LOG: Policy not being applied to reference at this time (private, custom,
partia
l, or location-based assembly bind).
LOG: Post-policy reference: xxx, Version=0.0.0.0 , Culture=neutr
al, PublicKeyToken= null
LOG: Attempting download of new URL file:///D:/tmp/C#Test/Test2/xxx.DLL.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote in
message news:Ox******** *****@TK2MSFTNG P09.phx.gbl... James,

Have you checked the FileName property of the FileNotFoundExc eption
that is thrown?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"James" <ja********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Hi guys

Do you ever get the exception in Managed C++? How can I know which file
or dll is missed?


Dec 16 '05 #3
That means that "avrt.dll" is not found when loading xxx.dll (a dependent of
your myc++.dll), make sure both are in your path or in the same directory.

Note that you better post C++ questions to the vc NG
(microsoft.publ ic.dotnet.langu ages.vc)
Willy.
"James" <ja********@hot mail.com> wrote in message
news:%2******** *******@TK2MSFT NGP09.phx.gbl.. .
This is a demonstrate

myc++.lib is my API library, which using /delayload:avrt. dll to compile.
When I using "cl /clr /LD xxx.cpp /link /delayload:avrt. dll myc++.lib"
to compile the xxx.dll, test3.exe will work abnormal. But I remove
/delayload:avrt. dll, test3 will throw FileNotFoundExc eption exception
cl /clr /LD xxx.Definition. cpp // the file defines the global enum
and struct value type
cl /clr /LD xxx.cpp /link myc++.lib // xxx.cpp using xxx.Definition. dll
and using functions from myc++.lib
csc test.cs /reference:xxx.D efinition.dll /reference:xxx.d ll
test.exe


Unhandled Exception: System.IO.FileN otFoundExceptio n: File or assembly
name xxx, or one of its dependencies, was not found.
File name: "xxx"
at MyClass.Main(St ring[] args)

=== Pre-bind state information ===
LOG: DisplayName = xxx, Version=0.0.0.0 , Culture=neutral ,
PublicKeyToken= null (Fully-specified)
LOG: Appbase = D:\tmp\C#Test\T est2\
LOG: Initial PrivatePath = NULL
Calling assembly : Test3, Version=0.0.0.0 , Culture=neutral ,
PublicKeyToken= null.

===

LOG: Application configuration file does not exist.
LOG: Policy not being applied to reference at this time (private, custom,
partia
l, or location-based assembly bind).
LOG: Post-policy reference: xxx, Version=0.0.0.0 , Culture=neutr
al, PublicKeyToken= null
LOG: Attempting download of new URL file:///D:/tmp/C#Test/Test2/xxx.DLL.

"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> wrote
in message news:Ox******** *****@TK2MSFTNG P09.phx.gbl...
James,

Have you checked the FileName property of the FileNotFoundExc eption
that is thrown?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"James" <ja********@hot mail.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
Hi guys

Do you ever get the exception in Managed C++? How can I know which file
or dll is missed?



Dec 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1544
by: Oliver | last post by:
Hello, I may have posted in the wrong place, if so, feel free to move my post (just notify me where you put it via email or something) I’m having a problem with my program that I cant readily explain. The program connects to, then reads and creates a new flat old Dbase files (.DBF) stored on a network drive. The program itself is run from the very same network drive/folder.
2
2742
by: Scott Reynolds | last post by:
I am having a problem exposing a class inherited from the collection base class as a webservice. If I expose the collection on a web page all works well and I am very happy. However when I try and expose this via a web service I get a weird error saying that the dll could not be found. The specific error is: I can't figure it out. I thought it was to do with reflection but I am able to load and view the webservice definition which...
0
1155
by: khamael | last post by:
Hi all, I've made an Outlook add-in that does some calls to a web service. When I make the first call to that web service, I'm getting the following exception: ---- System.IO.FileNotFoundException: File or assembly name wzc6bp7i.dll, or
3
12176
by: Michael Bøcker-Larsen | last post by:
Hi I'v been stuck on this problem for ages now. I have found that I'm not the only one with this problem, by looking through the different newsgroups. Hope you can help me! I know there is a lot of information, but if you need more (e.g. the code) please write michael@mblarsen.dk. The problem is this error messages (the code is build just fine; no errors):
0
1990
by: Martinh | last post by:
Hi After invoking RetrieveData in a WebService I recieve the following response in a new window... I am running Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573 on IIS6 on Server 2003 Enterprise. Does anybody has a working solution for me? Martin
1
3324
by: Parag Mahajan | last post by:
Hello, I am using VS.Net 2003 1.1 framework. I have a VB.Net client project consuming Axis 1.1 web service. Whenever I try to create an instance of the WebService, I get the following unhandled exception. Unhandled Exception: System.IO.FileNotFoundException: File or assembly name dyz_s_41.dll, or one of its dependencies, was not found. File name: "dyz_s_41.dll"
1
3089
by: Ryan.Mohammed | last post by:
I have a problem that does not happen without .NET 1.1 however it does happen on machines that have .NET 1.1 SP1 installed. Createinstance attempts to create an instance of ICEBOX.dll which references usbComm.dll. Has anyone encountered this before? Ryan ************** Exception Text ************** System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --->...
1
2624
by: Mongo | last post by:
I am getting the following error when I try to run a new webservice I have placed on any one of 4 windows 2003 servers. (Running under ASP.NET 1.1) To minimize the problem, I created a simple webservice called "TestApp" that exposes as the lone method on the service. I create a simple installer package for the msi and run it on the server. When I go to http://.../TestApp/Service1.asmx, the generated page and test page appear fine. ...
6
4894
by: Miro | last post by:
I can run an exe ( and its install ) i have created on my machine. The exe has a button that populates a dataset and then shoots it to a crystal report. But... Installing the setup.exe on my other pc, and running it I get an error. The Dataset loads properly, but when the button is pushed to view the report I get this error: ************** Exception Text **************
0
8796
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8704
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9307
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9071
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7946
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6627
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4715
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3155
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2514
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.