Results 1 to 2 of 2

Thread: Help required Making DLL file

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    Pakistan
    Posts
    436

    Help required Making DLL file

    Dear friends,

    I have created 3 classes in a dll project, one is main class, second is sub to main and third is subclass to sub.

    Addparties.Address.Street.stree1
    Main Sub sub to adress

    where there are to pulbic sub added in Main class for Addnew and Update. When i am trying to make it dll file a message appears " No create able public component detected", where i am wrong.

  2. #2
    old fart Frans C's Avatar
    Join Date
    Oct 1999
    Location
    the Netherlands
    Posts
    2,926

    Re: Help required Making DLL file

    You need to have at least one class that has it's instancing property set to MultiUse or GlobalMultiUse.
    If instancing is set to Private, or PublicNotCreatable, no instance of the class can be created by the calling program. If this is the case for all classes, the dll is useless, because no instance of any class can be created.

    In your case I guess that the main class must be set to MultiUse.
    Frans

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