Organize Forms

  • Thread starter Thread starter Stephan Zaubzer
  • Start date Start date
S

Stephan Zaubzer

Is it possible to organize forms so that their Code is seperated in
several classes?

What I would like to do is to have the code of the content for each tab
page in seperate classes.
Example:
A tabpage contains some facilities to view/update company data from a
database. Those facilities should be encapsulated in one class, so that
I can reuse this class at several points of the software.

What possibilities are there to implement this?

Regards
Stephan
 
Stephan,

The easiest way to do this would be to encapsulate the logic in separate
controls, one for each page. Then, you can embed each control on a separate
page.

Hope this helps.
 
Back
Top