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

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Abhijit D. Babar

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

    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.
  • Ben Voigt [C++ MVP]

    #2
    Re: How to create dll in Visual Studio 2008 in Visual C++

    Abhijit D. Babar wrote:
    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?)


    Comment

    Working...