How to create dll in Visual Studio 2008 in Visual C++

  • Thread starter Thread starter Abhijit D. Babar
  • Start date Start date
A

Abhijit D. Babar

Hello,
I have insatlled Visual Studio 2008. I have to create DLL in Project
type Visual C++.
Which Template i have to select to reate dll, MFC DLL or Class
Library?.

I have to call or import this dll in Windows Forms Application. How
can i do this. Please give details procedure to do this.
 
Abhijit said:
Hello,
I have insatlled Visual Studio 2008. I have to create DLL in Project
type Visual C++.
Which Template i have to select to reate dll, MFC DLL or Class
Library?.

I have to call or import this dll in Windows Forms Application. How
can i do this. Please give details procedure to do this.

Project Type

Visual C++ > CLR, Class Library

Then add a reference to the project from your main application (what
language is the main app?)
 
Back
Top