Hi,
I assume you are talking about C++ .NET project? In VS2003 IDE go to
'Solution Explorer' and right click the solution name (this will appear in
bold, usually above the references folder). After right-clicking select
'properties'. When the properties window appears, navigate to 'Config
Properties...General' and there will be an option called 'configuration
type'. Change this to 'Dynamic Library (.dll)' and then click OK and build
the solution. The only thing to watch for is that you have selected the
'active' build configuration in the properties window dialog box. You will
see the current selection at the top of the window and it will say something
like 'Active(debug)' or 'Active(release)' depending on which configuration
you are trying to build. Once the solution is built there should be a dll
file in the solution folder which you can reference in your VB project.
Richard.
[quoted text, click to view] "jwk" <jwk@discussions.microsoft.com> wrote in message
news:4ED8CCD9-7ACD-4281-ADCB-B28B9F71FE26@microsoft.com...
> I've been given a C++ class library project which I need to use from my
> asp.net vb.net project. I have tried building the C++ class library it but
> it
> only creates a series of .obj files which I can't reference from the
> asp.net
> project. How do I get the C++ class library to compile to a dll (I've
> played
> around with the properties of the project but it still doesn't seem to
> produce a dll), is there any other way to include it in my asp.net
> project??