CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2000
    Posts
    44

    How to make DLL ?

    I want to make DLL (Like in Visual C++)
    file that other programs can use it.
    How can i do it ?
    Thanks fo help !


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: How to make DLL ?

    start Vb and select "ActiveX DLL" as project type.
    Then, read the manual about creating com components.
    The finished DLL can be used be other programs written in C++, VB ...


  3. #3
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: How to make DLL ?

    If it's an ActiveX DLL you want to make, then you can read a post I wrote here http://codeguru.developer.com/bbs/wt...age=0&Limit=25 that shows the basics.

    If you want to create a standard windows DLL (ie. so you have to declare all the calls to it) - you'll need a different programming language as VB doesn't support the creation of this DLL type.


    Chris Eastwood

    CodeGuru - the website for developers
    http://codeguru.developer.com/vb

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured