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

    DLLs in Visual Basic

    Hi!
    I have worked with Visual C++ for quite a long time. Now, we are working at a project, in which we want to use Visual Basic DLLs in an existing application. But this application cant use ActiveX DLLs. So my question is: Is there any possibility to make a ´normal´ Win DLL, which exports ´normal´ functions, with Visual Basic?
    Thanx for all replies.
    Bye,
    Michael.

    --
    Michael Skubowius
    [email protected]
    http://www.scooby.de.cx/

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

    Re: DLLs in Visual Basic

    VB canNOT create "normal" DLLs, only ActiveX Dlls.
    For VB 3 there used to be a product VB/DLL that could create true DLLs for VB projects. I do not know if that product is still around.


  3. #3
    Join Date
    Apr 1999
    Location
    Netherlands
    Posts
    181

    Re: DLLs in Visual Basic

    There is a kind of basic which can create true windows dll's. Now I only forgot what that product is called exactly... maybe someone else knows?

    Crazy D @ Work :-)

  4. #4
    Join Date
    Jul 1999
    Location
    USA
    Posts
    101

    Re: DLLs in Visual Basic

    What is the diff between 'win dll' and 'activex dll'?

    Thanks


  5. #5
    Join Date
    Dec 1999
    Location
    MN
    Posts
    49

    Re: DLLs in Visual Basic

    I think Win Dll refers to general Dll, which will have exported functions. ActiveX dll use IDispatch interface and late binding. It use ID instead of method footprint to call the method inside the Dll.

    Correct me if I am wrong

    JohnZ

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

    Re: DLLs in Visual Basic

    I think it was / is PowerBasic ....


    Chris Eastwood

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

  7. #7
    Join Date
    Apr 1999
    Location
    Netherlands
    Posts
    181

    Re: DLLs in Visual Basic

    yes that's it...
    http://www.powerbasic.com/

    Crazy D @ Work :-)

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