CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Location
    California
    Posts
    264

    How can I compile .c file to dll and call the dll in VB?

    1)How can I compile .c file to dll and call the dll in VB?
    2)What's the differnt between ActiveX dll and dll? Which one is better?

    Thank you for your help!

    Best Regards,

    Kevin Shen
    Best Regards,

    Kevin Shen

  2. #2
    Join Date
    Apr 2000
    Posts
    737

    Re: How can I compile .c file to dll and call the dll in VB?

    refer http://vblib.virtualave.net
    There is a DLL created in VC++, able to be used by VB ActiveX DLL.

    Normally DLL (not those DLL that store class) is merely for storing useful functions, it can't raise event like ActiveX DLL. It's not as "OOP" as ActiveX DLL also, i.e. you don't need to make an instance of a class to gain access to normal DLL. (of course there are DLL which store OBJECT).


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