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.
 

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