CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2001
    Location
    TX,USA
    Posts
    5

    Executable and functions

    Hi Codegurus,

    I'm having an executable files with four functions. There is one class file also in this executable file. All I need is I want to access the functions in the executable file when it is running. whether it is possible? if possible how to do that?

    note:
    Actually I created as a activex dll and I was able to include that dll in reference and accessed
    the four functions. But what I need is same thing to be done when the program is converted as exe.
    how to do this?


    Thank you
    moydheen


  2. #2
    Join Date
    Apr 1999
    Location
    VA BEACH
    Posts
    467

    Re: Executable and functions

    You can create an ActiveX exe, otherwise known as an out of process COM Server. The server can expose interfaces just like a DLL but it runs in its own address space.



    Jim Hewitt
    Software Developer
    Liberty Tax Service
    www.LibertyTax.com

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