|
-
May 19th, 2005, 04:10 AM
#1
Thread Starter
Hyperactive Member
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.
-
May 19th, 2005, 05:32 AM
#2
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|