473,326 Members | 2,438 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,326 software developers and data experts.

Problem with ambiguous classes in my project

I have several CustomControls that I have written for my project. However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on disk.
If this reference is required by your code, you may get compilation errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

All of my classes/CustomControls are in the same Project, and are therefore
are in the same assembly. Why is this happening? Is there some way to find
out what the other class each of these is ambiguous with is?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/
Dec 31 '07 #1
12 2001
check that the reference has not got a warning mark near it. Check the path
for the reference refers to the correct dll and is present where it should
be.

Check that ur imports/using statements are correct.


"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:Ob**************@TK2MSFTNGP05.phx.gbl...
>I have several CustomControls that I have written for my project. However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk. If this reference is required by your code, you may get compilation
errors. nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

All of my classes/CustomControls are in the same Project, and are
therefore are in the same assembly. Why is this happening? Is there some
way to find out what the other class each of these is ambiguous with is?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

Dec 31 '07 #2
The reference does not have a warning mark, and the path does refer to the
correct dll. The dll is the same dll that I am compiling, because the
controls are created in *.vb files in that dll. It almost feels like two
copies of the same dll are being used at the same time. Any other ideas?
Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Just Me" <news.microsoft.comwrote in message
news:uq**************@TK2MSFTNGP06.phx.gbl...
check that the reference has not got a warning mark near it. Check the
path for the reference refers to the correct dll and is present where it
should be.

Check that ur imports/using statements are correct.


"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:Ob**************@TK2MSFTNGP05.phx.gbl...
>>I have several CustomControls that I have written for my project. However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly "nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk. If this reference is required by your code, you may get compilation
errors. nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

All of my classes/CustomControls are in the same Project, and are
therefore are in the same assembly. Why is this happening? Is there some
way to find out what the other class each of these is ambiguous with is?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/


Dec 31 '07 #3
On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
I have several CustomControls that I have written for my project. However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on disk.
If this reference is required by your code, you may get compilation errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.
Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton
Dec 31 '07 #4
I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I do
not need anything from this namespace). I have also tried using the fully
qualified names by adding nathansokalski_com_test. to the beginning, but the
error remains the same, except the whole fully qualified name is underlined
as an error, but the error message remains the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
>I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton

Jan 1 '08 #5
Check you don't have a control called "Menu" on a page (i.e id="Menu") and a
variable called Menu in the code behind.

This will be a name class as the page and codebehind are compiled into one
class.

HTH

--
Ciaran O'Donnell
There are 10 types of people in this world. Those that understand binary and
those that don't
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
>I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I
do not need anything from this namespace). I have also tried using the
fully qualified names by adding nathansokalski_com_test. to the beginning,
but the error remains the same, except the whole fully qualified name is
underlined as an error, but the error message remains the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
>On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
>>I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton


Jan 1 '08 #6
None of my controls have an ID that is the same as the name of any of my
classes. I tried adding a namespace

Namespace NathanSokalski
End Namespace

And modified the following line in my web.config:

<add tagPrefix="NJS" assembly="nathansokalski_com_test"
namespace="nathansokalski_com_test.NathanSokalski"/>

The following now happens:

1. I am able to use the controls in the *.aspx, *.ascx, *.master, etc. files

2. The namespaces nathansokalski_com_test and NathanSokalski are listed when
entering code, but my classes are not listed as classes in NathanSokalski

3. The warnings/errors are as follows:

Warning: Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on disk.
If this reference is required by your code, you may get compilation errors.

Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'.

I receive the error above for all my classes/customcontrols, even though
they are fully qualified names. The only real change made by the namespace
is that there are no errors in the *.aspx files, but there are still errors
when using the classes in the *.aspx.vb files. But now that I have added a
namespace, I know that none of my classes/customcontrols are ambiguous with
anything built into ASP.NET. What could they possibly be ambiguous with, and
what can I do to fix this? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Ciaran O'Donnell" <no@spam.comwrote in message
news:fl*******************@news.demon.co.uk...
Check you don't have a control called "Menu" on a page (i.e id="Menu") and
a variable called Menu in the code behind.

This will be a name class as the page and codebehind are compiled into one
class.

HTH

--
Ciaran O'Donnell
There are 10 types of people in this world. Those that understand binary
and those that don't
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
>>I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I
do not need anything from this namespace). I have also tried using the
fully qualified names by adding nathansokalski_com_test. to the
beginning, but the error remains the same, except the whole fully
qualified name is underlined as an error, but the error message remains
the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
>>On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace
'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton



Jan 1 '08 #7
Hi,

Tom is right. There are build in classes called "Menu" in .NET Framework
libraries. For example System.Web.UI.WebControls is an another namespace
that contains a class named "Menu".

It is better to declare your own Menu class with namespace directives, eg:
nathansokalski_com_test.Menu

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
>I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I
do not need anything from this namespace). I have also tried using the
fully qualified names by adding nathansokalski_com_test. to the beginning,
but the error remains the same, except the whole fully qualified name is
underlined as an error, but the error message remains the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
>On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
>>I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton

Jan 1 '08 #8
I have tried adding the following namespace for all my classes:

Namespace NathanSokalski
End Namespace

And modified the following line in the <controlssection of my web.config:

<add tagPrefix="NJS" assembly="nathansokalski_com_test"
namespace="nathansokalski_com_test.NathanSokalski"/>

The following now happens:

1. I am able to use the controls in the *.aspx, *.ascx, *.master, etc. files

2. The namespaces nathansokalski_com_test and NathanSokalski are listed when
entering code in *.vb files, but my classes are not listed as classes in
NathanSokalski

3. The warnings/errors are as follows:

Warning: Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on disk.
If this reference is required by your code, you may get compilation errors.

Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'.

I receive the error above for all my classes/customcontrols, even though
they are fully qualified names. The only real change made by the namespace
is that there are no errors in the *.aspx files, but there are still errors
when using the classes in the *.aspx.vb files. But now that I have added a
namespace, I know that none of my classes/customcontrols are ambiguous with
anything built into ASP.NET. What could they possibly be ambiguous with, and
what can I do to fix this? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Coskun SUNALI [MVP]" <Co****@SUNALI.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Hi,

Tom is right. There are build in classes called "Menu" in .NET Framework
libraries. For example System.Web.UI.WebControls is an another namespace
that contains a class named "Menu".

It is better to declare your own Menu class with namespace directives, eg:
nathansokalski_com_test.Menu

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
>>I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I
do not need anything from this namespace). I have also tried using the
fully qualified names by adding nathansokalski_com_test. to the
beginning, but the error remains the same, except the whole fully
qualified name is underlined as an error, but the error message remains
the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
>>On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace
'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton


Jan 1 '08 #9
Hi,

"Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'."

What I understand from this warning/exception is that you have 2
"Transparency" in "nathansokalski_com_test.NathanSokalski" namespace. Could
you check that?

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP05.phx.gbl...
>I have tried adding the following namespace for all my classes:

Namespace NathanSokalski
End Namespace

And modified the following line in the <controlssection of my
web.config:

<add tagPrefix="NJS" assembly="nathansokalski_com_test"
namespace="nathansokalski_com_test.NathanSokalski"/>

The following now happens:

1. I am able to use the controls in the *.aspx, *.ascx, *.master, etc.
files

2. The namespaces nathansokalski_com_test and NathanSokalski are listed
when entering code in *.vb files, but my classes are not listed as classes
in NathanSokalski

3. The warnings/errors are as follows:

Warning: Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk. If this reference is required by your code, you may get compilation
errors.

Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'.

I receive the error above for all my classes/customcontrols, even though
they are fully qualified names. The only real change made by the namespace
is that there are no errors in the *.aspx files, but there are still
errors when using the classes in the *.aspx.vb files. But now that I have
added a namespace, I know that none of my classes/customcontrols are
ambiguous with anything built into ASP.NET. What could they possibly be
ambiguous with, and what can I do to fix this? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Coskun SUNALI [MVP]" <Co****@SUNALI.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Hi,

Tom is right. There are build in classes called "Menu" in .NET Framework
libraries. For example System.Web.UI.WebControls is an another namespace
that contains a class named "Menu".

It is better to declare your own Menu class with namespace directives,
eg: nathansokalski_com_test.Menu

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
>>>I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I
do not need anything from this namespace). I have also tried using the
fully qualified names by adding nathansokalski_com_test. to the
beginning, but the error remains the same, except the whole fully
qualified name is underlined as an error, but the error message remains
the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
I have several CustomControls that I have written for my project.
However,
when I try to compile I recieve the following warning & errors:
>
Warning 32 Could not resolve this reference. Could not locate the
assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk.
If this reference is required by your code, you may get compilation
errors.
nathansokalski_com_test
>
I receive the following error for all of my classes/CustomControls:
>
Error 33 'Menu' is ambiguous in the namespace
'nathansokalski_com_test'.

Well, the problem is most likely that you have a class called menu, and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.

To fix it you may have to fully qualify all the names... In other
words,
instead of:

Dim m as menu

You might need to to say:

dim m as nathansokalaski_com_test.Menu

HTH

--
Tom Shelton


Jan 1 '08 #10
No, I tried a search for 'Class Transparency' and for 'Transparency', and
the first returned only one result (the ONE that exists) and the second
returned the places I am attempting to make use of that class. Also, keep in
mind that this same error is occurring for all of my custom classes. The
only thing left that I can think of to try would be to recreate my whole
solution through copy & paste, but I would prefer not to have to do that (if
it would even work). Any other ideas?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Coskun SUNALI [MVP]" <Co****@SUNALI.comwrote in message
news:e2****************@TK2MSFTNGP04.phx.gbl...
Hi,

"Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'."

What I understand from this warning/exception is that you have 2
"Transparency" in "nathansokalski_com_test.NathanSokalski" namespace.
Could you check that?

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP05.phx.gbl...
>>I have tried adding the following namespace for all my classes:

Namespace NathanSokalski
End Namespace

And modified the following line in the <controlssection of my
web.config:

<add tagPrefix="NJS" assembly="nathansokalski_com_test"
namespace="nathansokalski_com_test.NathanSokalski "/>

The following now happens:

1. I am able to use the controls in the *.aspx, *.ascx, *.master, etc.
files

2. The namespaces nathansokalski_com_test and NathanSokalski are listed
when entering code in *.vb files, but my classes are not listed as
classes in NathanSokalski

3. The warnings/errors are as follows:

Warning: Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk. If this reference is required by your code, you may get compilation
errors.

Error: 'Transparency' is ambiguous in the namespace
'nathansokalski_com_test.NathanSokalski'.

I receive the error above for all my classes/customcontrols, even though
they are fully qualified names. The only real change made by the
namespace is that there are no errors in the *.aspx files, but there are
still errors when using the classes in the *.aspx.vb files. But now that
I have added a namespace, I know that none of my classes/customcontrols
are ambiguous with anything built into ASP.NET. What could they possibly
be ambiguous with, and what can I do to fix this? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Coskun SUNALI [MVP]" <Co****@SUNALI.comwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>>Hi,

Tom is right. There are build in classes called "Menu" in .NET Framework
libraries. For example System.Web.UI.WebControls is an another namespace
that contains a class named "Menu".

It is better to declare your own Menu class with namespace directives,
eg: nathansokalski_com_test.Menu

--
All the best,
Coskun SUNALI
MVP ASP/ASP.NET
http://sunali.com
http://www.propeople.dk
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:el**************@TK2MSFTNGP04.phx.gbl...
I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so
I do not need anything from this namespace). I have also tried using
the fully qualified names by adding nathansokalski_com_test. to the
beginning, but the error remains the same, except the whole fully
qualified name is underlined as an error, but the error message remains
the same.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Tom Shelton" <to*********@YOUKNOWTHEDRILLcomcast.netwrote in message
news:OH**************@TK2MSFTNGP05.phx.gbl...
On 2007-12-31, Nathan Sokalski <nj********@hotmail.comwrote:
>I have several CustomControls that I have written for my project.
>However,
>when I try to compile I recieve the following warning & errors:
>>
>Warning 32 Could not resolve this reference. Could not locate the
>assembly
>"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
>processorArchitecture=MSIL". Check to make sure the assembly exists
>on disk.
>If this reference is required by your code, you may get compilation
>errors.
>nathansokalski_com_test
>>
>I receive the following error for all of my classes/CustomControls:
>>
>Error 33 'Menu' is ambiguous in the namespace
>'nathansokalski_com_test'.
>
Well, the problem is most likely that you have a class called menu,
and
have an Imports System.Windows.Forms in the file. In those cases, the
compiler can't tell if you mean System.Windows.Forms.Menu or
nathansokalski_com_test.Menu.
>
To fix it you may have to fully qualify all the names... In other
words,
instead of:
>
Dim m as menu
>
You might need to to say:
>
dim m as nathansokalaski_com_test.Menu
>
HTH
>
--
Tom Shelton


Jan 1 '08 #11
["Followup-To:" header set to microsoft.public.dotnet.languages.vb.]
On 2008-01-01, Nathan Sokalski <nj********@hotmail.comwrote:
I do not have an

Imports System.Windows.Forms

statement anywhere in my application, or anything else from the
System.Windows namespace (my application is an ASP.NET application, so I do
not need anything from this namespace). I have also tried using the fully
Ok, then it's probably System.Web.UI.Controls (I think that's it off my
head :). The point is you have two or more classes named Menu being
brought into the same namespace. This creates ambiguity if you don't
qualify your declarations.

--
Tom Shelton
Jan 1 '08 #12
You are naming your classes the same as classes in other namespaces you have
included in your pages. For example, there is a .NET class called Menu. You
also have one called Menu. Ambiguous, right?

Options: a) Remove all reference to System.Web.Controls or b) include
namespace in your own code for all controls.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
"Nathan Sokalski" <nj********@hotmail.comwrote in message
news:Ob**************@TK2MSFTNGP05.phx.gbl...
>I have several CustomControls that I have written for my project. However,
when I try to compile I recieve the following warning & errors:

Warning 32 Could not resolve this reference. Could not locate the assembly
"nathansokalski_com_test, Version=1.0.0.0, Culture=neutral,
processorArchitecture=MSIL". Check to make sure the assembly exists on
disk. If this reference is required by your code, you may get compilation
errors. nathansokalski_com_test

I receive the following error for all of my classes/CustomControls:

Error 33 'Menu' is ambiguous in the namespace 'nathansokalski_com_test'.

All of my classes/CustomControls are in the same Project, and are
therefore are in the same assembly. Why is this happening? Is there some
way to find out what the other class each of these is ambiguous with is?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

Jan 3 '08 #13

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

Similar topics

12
by: Nathan Sokalski | last post by:
I have several CustomControls that I have written for my project. However, when I try to compile I recieve the following warning & errors: Warning 32 Could not resolve this reference. Could not...
2
by: Nathan Sokalski | last post by:
I recently started recieving errors like: 'LeftNavigation' is ambiguous in the namespace 'nathansokalski_com_test'. (nathansokalski_com_test is the name of my project) I know what ambiguous...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.