CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: dlls etc

  1. #1
    Join Date
    Apr 1999
    Posts
    108

    dlls etc

    whenver im programming apllications, up until now, i have only used the single .exe compile. The problem with this that i seem to be having is the fact that this one file application is sometimes exceding 1meg.

    How abouts do i intergrate dll's intot he application to spread the file size out a bit? do i just make a dll with forms and then compile it? but then how do i access the dll with the exe app?

    thanks

    -joe

    ?

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

    Re: dlls etc

    I'd put business logic code into the Activex dlls, not forms. That way you have a chance to reuse that logic in another app.
    To reference it in your exe app, goto to Project /References and add your ActiveX dll to your exe project and refer to it in your app by the name as it appears in the object browser.


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