tags:

views:

53

answers:

4

I want use the Scintilla controls and the RadControls for Winforms, but I do not know how to incorporate the files. They are in .dll format? How do I use the controls if they are in .dll format?

+1  A: 

http://msdn.microsoft.com/en-us/library/wkze6zky%28VS.80%29.aspx

Right click the project, click Add Reference, go to Browse tab, find them and add them.

Nick Spiers
They don't show up on the toolbox view.
Mohit Deshpande
right click in the toolbox (preferably a new tab in it), and click choose items. Then find the controls you wish to add (they should be under .NET Framework Components if you referenced it like I put above), check off the new controls then click OK.
Nick Spiers
A: 

Generally you would add them to the project you want to use them in, then add a reference, and then use them like any other dll.

For installing into the GAC, see this.

RCIX
A: 

In the winforms toolbox, right click and "Choose Items...", then click the browse button and find the dll. Then go through the list of controls, and check the controls that you've added (usually it will do this step for you).

FryGuy
A: 

This knowledge base article on the Telerik website explains how to manually add the controls to the toolbox in Visual Studio.

Shoerob