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.
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.