A question about DLL

  • Thread starter Thread starter tony
  • Start date Start date
T

tony

Hello!!

I'm using VS 2003 and C# and some dll. These dll are of type class library
and windows control.

Im I right if I say that there is a problems by having several dll project
especially windows control in the same solution as the project that create
the exe file.

One problem that I have noticed is when you modify a windows control and you
want to update the control in the Toolbox you get two different icons but
with the same name. You can only delete one of the control but not the
other. One of the icon look like a wheel and the other look like a window
with 4 buttons in. You can only delete the one that look like a wheel.

I thing this problems has to do with loading of dll.

Have you any suggestion or comment about my problem.

//Tony
 
That means that you did not reference the project, but the output dll...
which is not a practical way...

Referencing the project itself allow the app to always use the right DLL
file with the latest modifications...

Steve
 
Back
Top