N Newbie Apr 9, 2004 #1 I have some controls (dll's) - how to import & use them in C#?? (VB = Imports ...) Any link? thnx!
J Joe Mayo [C# MVP] Apr 9, 2004 #2 Newbie said: I have some controls (dll's) - how to import & use them in C#?? (VB = Imports ...) Any link? Click to expand... 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
Newbie said: I have some controls (dll's) - how to import & use them in C#?? (VB = Imports ...) Any link? Click to expand... 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
N Newbie Apr 9, 2004 #3 ...but in that case, everybody who wants to start that program must manually register used controls before running the program?
...but in that case, everybody who wants to start that program must manually register used controls before running the program?
E Ed Courtenay Apr 9, 2004 #4 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.
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.