Results 1 to 3 of 3

Thread: AcitveX dll / ActiveX exe

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Posts
    343

    Lightbulb

    Hi,

    I want to write a simple program(ActiveX dll or ActiveX exe) which can be used by other programs and languages.

    All that the dll(??) will do is return a True or False depending on what info is sent to it by the app calling the dll.

    My questions are..

    1.) what will I use - ActiveX exe or dll.
    2.) Will other languages like Delphi etc be able to use/reference this program if it is registered on the pc.

    Thanks,

  2. #2
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    Use an ActiveX/COM DLL. These are the most common and are run in-process with the calling app. Any COM enabled language (running in Windows, of course) will be able to use them.

    ActiveX EXEs are out-of-process components, and are much less common than in-proc DLLs. Because these are out-of-process, they are slower than their in process counterparts.

    There are pros and cons to each of these, but if you just want to encapsulate some code and distribute it, package it as a DLL


    Tom

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2000
    Posts
    343

    Talking

    Thanks Tom!!

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