Beginner dealing with *.dll

  • Thread starter Thread starter Newbie
  • Start date Start date
N

Newbie

I have some controls (dll's) - how to import & use them in C#?? (VB =
Imports ...)
Any link?

thnx!
 
Newbie said:
I have some controls (dll's) - how to import & use them in C#?? (VB =
Imports ...)
Any link?


Hi Newbie,

Right-click on the Toolbox and select Add/Remove Items. Then Browse for the
location of the DLL where the controls are located. This will add the
controls to the Toolbox and you can drag-and-drop them on your design
surface.

Joe
 
...but in that case, everybody who wants to start that program must manually
register used controls before running the program?
 
No, VS.NET will add the relevant DLL to your bin/Debug or bin/Release folder
on compilation.

As a general rule with .NET, DLLs do not have to be registered.
 
Back
Top