473,386 Members | 1,698 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,386 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 1254
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...

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.