problems with library reference.

  • Thread starter Thread starter jen
  • Start date Start date
J

jen

i've added a reference to a class library (dll) i've created, and i've
added the using statement to the project, but to no avail. i get that
silly error saying that i'm not using, a using or a reference to the
library cannot be found.

what gives? any help is appreciated.

thanks...

-
jen
 
Hello Jen,

Probably you forget to add some other dependend libraries.
Check what do u use and what are u refering to

J> i've added a reference to a class library (dll) i've created, and
J> i've added the using statement to the project, but to no avail. i get
J> that silly error saying that i'm not using, a using or a reference to
J> the library cannot be found.
J>
---
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 
jen said:
i've added a reference to a class library (dll) i've created, and i've
added the using statement to the project, but to no avail. i get that
silly error saying that i'm not using, a using or a reference to the
library cannot be found.

what gives? any help is appreciated.

thanks...

-
jen

Jen,

Have you checked your namespaces? Perhaps you need to a a using
statement (C#) referencing your DLL's namespace.

-Jay
 
Jay said:
Jen,

Have you checked your namespaces? Perhaps you need to a a using
statement (C#) referencing your DLL's namespace.

-Jay

hey thanks guys! your replies got me thinking and it wound up being a
namespace issue. plus there was an access modifier issue as well. it
all works as expected now.

thanks again...

-
jen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top