VCX library. Installation

News

VCX installation package contains:

  • Core files (ocx)
  • Documentation
  • Demo projects

You can choose any combination of the options above.

Note if you choose to install core files then the setup program registers VCProX.ocx in system. It will be automatically unregistered during the uninstallation process.

The below sections describe how to add VCX library to your project.

Visual Studio .NET 2003, 2005. Visual Basic .NET, Visual C#

Open "Customize Toolbox" dialog (right-click on Toolbox) and switch to the "COM Components" tab.

Select components that belong to "VCProX Library" and press OK. You will see new components in the toolbox:

Visual Studio 6.0. Visual Basic

Open the "Components" dialog (Project -> Components menu). Select "VCProX library" and press OK. You will see new components in the toolbox:

Visual Studio 6.0, Visual Studio .NET 2003, 2005. Visual C++

We recommend using C++ #import directive:

#import "VCProX.ocx"
using namespace VCProX;

...

IvcproWaveInDeviceXPtr wavein;
wavein.CreateInstance(__uuidof(vcproWaveInDeviceX));
wavein->Active = true;