Share Classes

  • Thread starter Thread starter TCORDON
  • Start date Start date
T

TCORDON

I have an application that has many clases, some for accessing data, manage
connections, Custom Objects, General App rules, etc. If I want to group them
in some way so that each group becomes a single DLL (I need this so that in
the future other apps can reference them and request thata, etc) how can I
do this?

TIA!
 
You need to create a 'Class Library' project, which will create a DLL that
you are able to add to your future projects.
 
For each DLL a new project?


Crouchie1998 said:
You need to create a 'Class Library' project, which will create a DLL that
you are able to add to your future projects.
 
For each DLL a new project?Where did you read that in the mesage from Crouchie?

Cor
 
If you want separate .dll's then you must use separate projects. If
you put all your classes into a single project, then you will have a
single dll with all your classes.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top