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
    India-Delhi
    Posts
    106

    How to compile the functions.

    Dear All,

    In Santy.bas, I am collecting all my function, I developed my own. Whenever, I want to include them in a project, I add that module in project and use the functions.

    Can I complite them as DLL or any other source and use also? I wish to give to others for development but not as original code.

    please help.

    Santulan


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

    Re: How to compile the functions.

    you can create libraries of your own vB functions by creating a VB project of type Active X DLL and specifying the "Global multiuse" Instancing property of your main class module.
    Just place all your code in a class module.
    Your users simply add a reference to that AX dll and call your functions without any need to specify an object instance , they just call it as if they had added your bas module.


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