Windows DLL Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have a DLL with some Forms, classes, et
I want to see when I call the DLL from a program just one Class, the "Starting Class
Is it possible to see from the "outside" just one class?,

Exemple: when I call MyClass.[I see just one class

Thanks for your help
 
I have a DLL with some Forms, classes, etc
I want to see when I call the DLL from a program just one Class, the "Starting Class"
Is it possible to see from the "outside" just one class?,

Exemple: when I call MyClass.[I see just one class]

Thanks for your help

make only one class 'public' and all other classes 'internal', so they are
only visible in the current module.

regards, Wiktor
 
Hi Bernardo,
You see only classes declared as *public*. So if you make only the "Starting
Class" *public* and the rest of the classes *internal* you'll see only the
"Starting Class"
 
Back
Top