473,418 Members | 2,328 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,418 software developers and data experts.

It's not possible to call method in a class library dll from a user control dll

Hello!

I have one solution file that consist of three project.
One project that build the exe file called A
One project that build a user control dll. Here we have a class called B
One project that build a class library dll. Here we have a class called C

We have one dependency and that is from the user control to the class
library because
in the constructor for class B in the user control we have a call to
instansiate class C in the class library dll.
public B()
{
InitializeComponent();
Last.C last = new Last.C();
last.foo();
}

In the project that create the exe file I have a project reference to the
user control.
In the project that create the user control I have a project reference to
the class library.

When I add the user control to the Toolbox I use the obj/debug directory to
select the user control dll.

Now to my problem when I try to drag the user control from the toolbox into
a form I get the following error "An exception occured while trying to
create an instance of WindowsControlLibrary.B. The execption was "?"."

Is this kind of a bug that cause this problem.
Is it possible to solve this kind of problem in some way.
I have even rebuild the user control dll and the class library dll but it
doesn't matter.
//Tony
I just wonder what is the requirement about the dll and its version on the
dll

I noticed that when I get error



Apr 2 '06 #1
4 1669
Hi Tony,

The problem doesn't stem from the fact that the User Control assembly
references the assembly it depends on, and that the executable references
the User Control assembly. I know that for a fact because I have done this
many times. What I don't know is what caused the error.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.

"Tony Johansson" <jo*****************@telia.com> wrote in message
news:93*******************@newsb.telia.net...
Hello!

I have one solution file that consist of three project.
One project that build the exe file called A
One project that build a user control dll. Here we have a class called B
One project that build a class library dll. Here we have a class called C

We have one dependency and that is from the user control to the class
library because
in the constructor for class B in the user control we have a call to
instansiate class C in the class library dll.
public B()
{
InitializeComponent();
Last.C last = new Last.C();
last.foo();
}

In the project that create the exe file I have a project reference to the
user control.
In the project that create the user control I have a project reference to
the class library.

When I add the user control to the Toolbox I use the obj/debug directory
to select the user control dll.

Now to my problem when I try to drag the user control from the toolbox
into a form I get the following error "An exception occured while trying
to create an instance of WindowsControlLibrary.B. The execption was "?"."

Is this kind of a bug that cause this problem.
Is it possible to solve this kind of problem in some way.
I have even rebuild the user control dll and the class library dll but it
doesn't matter.
//Tony
I just wonder what is the requirement about the dll and its version on the
dll

I noticed that when I get error



Apr 2 '06 #2
Hi!

When I have this kind of problem what is the solution?
If I put the class library in the GAC that is called by the user control
would that solve my problem?

Do you think that this could be a bug because you have experienced this
kind of problem yourself.

I see that you are Microsoft MVP so do you think it's possible to send a
mail to microsoft telling them about my problem.

//Tony

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> skrev i meddelandet
news:uX**************@TK2MSFTNGP09.phx.gbl...
Hi Tony,

The problem doesn't stem from the fact that the User Control assembly
references the assembly it depends on, and that the executable references the User Control assembly. I know that for a fact because I have done this many times. What I don't know is what caused the error.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.

"Tony Johansson" <jo*****************@telia.com> wrote in message
news:93*******************@newsb.telia.net...
Hello!

I have one solution file that consist of three project.
One project that build the exe file called A
One project that build a user control dll. Here we have a class called B One project that build a class library dll. Here we have a class called C
We have one dependency and that is from the user control to the class
library because
in the constructor for class B in the user control we have a call to
instansiate class C in the class library dll.
public B()
{
InitializeComponent();
Last.C last = new Last.C();
last.foo();
}

In the project that create the exe file I have a project reference to the user control.
In the project that create the user control I have a project reference to the class library.

When I add the user control to the Toolbox I use the obj/debug directory to select the user control dll.

Now to my problem when I try to drag the user control from the toolbox
into a form I get the following error "An exception occured while trying to create an instance of WindowsControlLibrary.B. The execption was "?"."
Is this kind of a bug that cause this problem.
Is it possible to solve this kind of problem in some way.
I have even rebuild the user control dll and the class library dll but it doesn't matter.
//Tony
I just wonder what is the requirement about the dll and its version on the dll

I noticed that when I get error






Apr 2 '06 #3
You misunderstood me, Tony. I have never had this problem. I have
successfully done the same thing you're trying to do without any problems,
and no, I didn't use the GAC.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.

"Tony Johansson" <jo*****************@telia.com> wrote in message
news:Pm*******************@newsb.telia.net...
Hi!

When I have this kind of problem what is the solution?
If I put the class library in the GAC that is called by the user control
would that solve my problem?

Do you think that this could be a bug because you have experienced this
kind of problem yourself.

I see that you are Microsoft MVP so do you think it's possible to send a
mail to microsoft telling them about my problem.

//Tony

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> skrev i meddelandet
news:uX**************@TK2MSFTNGP09.phx.gbl...
> Hi Tony,
>
> The problem doesn't stem from the fact that the User Control assembly
> references the assembly it depends on, and that the executable

references
> the User Control assembly. I know that for a fact because I have done

this
> many times. What I don't know is what caused the error.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Numbskull
>
> Show me your certification without works,
> and I'll show my certification
> *by* my works.
>
> "Tony Johansson" <jo*****************@telia.com> wrote in message
> news:93*******************@newsb.telia.net...
>> Hello!
>>
>> I have one solution file that consist of three project.
>> One project that build the exe file called A
>> One project that build a user control dll. Here we have a class called B >> One project that build a class library dll. Here we have a class called C >>
>> We have one dependency and that is from the user control to the class
>> library because
>> in the constructor for class B in the user control we have a call to
>> instansiate class C in the class library dll.
>> public B()
>> {
>> InitializeComponent();
>> Last.C last = new Last.C();
>> last.foo();
>> }
>>
>> In the project that create the exe file I have a project reference to the >> user control.
>> In the project that create the user control I have a project reference to >> the class library.
>>
>> When I add the user control to the Toolbox I use the obj/debug directory >> to select the user control dll.
>>
>> Now to my problem when I try to drag the user control from the toolbox
>> into a form I get the following error "An exception occured while trying >> to create an instance of WindowsControlLibrary.B. The execption was "?"." >>
>> Is this kind of a bug that cause this problem.
>> Is it possible to solve this kind of problem in some way.
>> I have even rebuild the user control dll and the class library dll but it >> doesn't matter.
>>
>>
>> //Tony
>>
>>
>> I just wonder what is the requirement about the dll and its version on the >> dll
>>
>> I noticed that when I get error
>>
>>
>>
>>
>>
>>
>>
>>

>
>



Apr 2 '06 #4
Hello!

When I'm in design mode and drag the user control from the toolbox into
a form that exist in the project that build the exe file which search path
is used to locate the class library dll.

Many thanks

//Tony
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> skrev i meddelandet
news:e#**************@TK2MSFTNGP10.phx.gbl...
You misunderstood me, Tony. I have never had this problem. I have
successfully done the same thing you're trying to do without any problems,
and no, I didn't use the GAC.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.

"Tony Johansson" <jo*****************@telia.com> wrote in message
news:Pm*******************@newsb.telia.net...
Hi!

When I have this kind of problem what is the solution?
If I put the class library in the GAC that is called by the user control would that solve my problem?

Do you think that this could be a bug because you have experienced this
kind of problem yourself.

I see that you are Microsoft MVP so do you think it's possible to send a mail to microsoft telling them about my problem.

//Tony

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> skrev i meddelandet
news:uX**************@TK2MSFTNGP09.phx.gbl...
> Hi Tony,
>
> The problem doesn't stem from the fact that the User Control assembly
> references the assembly it depends on, and that the executable

references
> the User Control assembly. I know that for a fact because I have done

this
> many times. What I don't know is what caused the error.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Numbskull
>
> Show me your certification without works,
> and I'll show my certification
> *by* my works.
>
> "Tony Johansson" <jo*****************@telia.com> wrote in message
> news:93*******************@newsb.telia.net...
>> Hello!
>>
>> I have one solution file that consist of three project.
>> One project that build the exe file called A
>> One project that build a user control dll. Here we have a class called
B
>> One project that build a class library dll. Here we have a class

called C
>>
>> We have one dependency and that is from the user control to the
class >> library because
>> in the constructor for class B in the user control we have a call to
>> instansiate class C in the class library dll.
>> public B()
>> {
>> InitializeComponent();
>> Last.C last = new Last.C();
>> last.foo();
>> }
>>
>> In the project that create the exe file I have a project reference to the
>> user control.
>> In the project that create the user control I have a project
reference to
>> the class library.
>>
>> When I add the user control to the Toolbox I use the obj/debug

directory
>> to select the user control dll.
>>
>> Now to my problem when I try to drag the user control from the
toolbox >> into a form I get the following error "An exception occured while

trying
>> to create an instance of WindowsControlLibrary.B. The execption was

"?"."
>>
>> Is this kind of a bug that cause this problem.
>> Is it possible to solve this kind of problem in some way.
>> I have even rebuild the user control dll and the class library dll

but it
>> doesn't matter.
>>
>>
>> //Tony
>>
>>
>> I just wonder what is the requirement about the dll and its version
on the
>> dll
>>
>> I noticed that when I get error
>>
>>
>>
>>
>>
>>
>>
>>
>
>




Apr 3 '06 #5

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

Similar topics

3
by: Chua Wen Ching | last post by:
Hi there, I had applied this security permissions in my class library based on fxcop standards. Before namespace: using System.Runtime.InteropServices; using System.Security.Permissions;
13
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
14
by: multiformity | last post by:
So I have been working on an opensource project for a while, and decided to really try to make it look better after focusing on the functionality most of this time. Up to now, I have simply used a...
5
by: Stan Sainte-Rose | last post by:
Hi, How can I call an event from an action. Example, I want to call the datagrid.Double.click event when a button is pressed. Stan.
4
by: Daylor | last post by:
hi. i have multi thread application in vb.net is there a way NET support, so i can mark the class , to be access only for 1 thread each time ? if there is , small sytax sample will help ...
5
by: Tony Johansson | last post by:
Hello! I have one solution file that consist of three project. One project that build the exe file called A One project that build a user control dll. Here we have a class called B One project...
9
by: JT | last post by:
Here is the overall structure I will be referring to: End-program ProvideWorkFlow.dll Forms and methods that properly manipulate calls to methods in AccessUtils AccessUtils (a web service)...
1
by: gregory.lielens | last post by:
Hello, We are currently writing python bindings to an existing C++ library, and we encountered a problem that some of you may have solved (or that has found unsolvable :( ): A C++ class...
12
by: Tom | last post by:
First, my thanks in advance to those who can help explain away this mystery line of code. Petzold is a great teacher and I appreciate his work; however, his explanation about an extra line of...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
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...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
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...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

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.