Installing .NET component into Visual Studio
In Visual Studio 2010, Visual Studio 2008 and Visual Studio 2005
- Use Main Menu -> Tools -> Choose Toolbox items to open Toolbox Customization dialog
- In the dialog that appears activate .NET Framework Components tab
- Find CallbackFilter component in the list and check it.
- If you don't find the component in the list, use Browse button to find and add the assembly, which contains the component, to the list. The assemblies (32-bit and 64-bit) for .NET 4.0 are located in <CallbackFilter>\dotNET\NET_40 folder. The assemblies (32-bit and 64-bit) for .NET 2.0 are located in <CallbackFilter>\dotNET\NET_20 folder.
Using the components
To use CallbackFilter in your project, you need to include CBFltNet.dll to the list of project references. Then, in source file, add the following line:
- C#:
using CbFlt; - VB.NET:
imports CbFlt; - C++:
#using <CBFltNet.dll>

