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

    Declare a classic DLL (Not an ActiveX)

    Hello!

    Somebody can tell me how to declare and use a classic DLL (not ActiveX). I worked a lot with AX but never with classic DLL.

    Help me please!!!

    Isabelle



  2. #2
    Join Date
    Feb 2000
    Location
    Indiana
    Posts
    308

    Re: Declare a classic DLL (Not an ActiveX)

    I don't think you can make a non-ActiveX DLL with VB. ActiveX is pretty much just a fancy way of saying it uses COM. Since the underlying workings of VB is COM, any DLL you create will implement COM.


  3. #3
    Join Date
    Feb 2000
    Location
    America
    Posts
    130

    Re: Declare a classic DLL (Not an ActiveX)

    Kyle's right, you can't make a normal windows dll through VB. I've tried many times and asked around, just never worked. sorry


  4. #4
    Join Date
    Oct 1999
    Location
    Old West Germany ;-)
    Posts
    6

    Re: Declare a classic DLL (Not an ActiveX)

    If you like to create a DLL in VC++ and only want to use it in VB, I could send you some code.
    Email: [email protected]


  5. #5
    Guest

    Re: Declare a classic DLL (Not an ActiveX)

    just set the standard project as - save as dll . for this
    go to project -> save as dll , this dll can be used only within the project


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