Can't add user control in a separate assemly

  • Thread starter Thread starter Rami
  • Start date Start date
R

Rami

I manage to add a class in my project namespace, add UserControl inharitance
and after compilation I see its usercontrol representation in the toolbox.
On the other hand if I create the class in a separate project and assembly
which I added to the solution, it doesn't appear there.
Can someone advise please.
Regards
Rami
 
I manage to add a class in my project namespace, add UserControl inharitance
and after compilation I see its usercontrol representation in the toolbox.
On the other hand if I create the class in a separate project and assembly
which I added to the solution, it doesn't appear there.
Can someone advise please.
Regards
Rami

Are you adding your library to the solution using "new project" by
adding dll as seperate project? If so, reference the library from your
main (form) project and import to main project to make is usable.

Also if library is in the same project, you should be able to use the
library.

Thanks,

Onur Güzel
 
Back
Top