Hello Jack, > It's the main form class. For functional classes, I always try > to keep them small and manageable. However, in the form class, > the GUI control declaration, event and message handlers, and GUI > related code will make the class large already.
If I have a large 'main' class then mostly I make a TApp class that does the main application things (the whole application without GUI). In the main form I only do the GUI things based on event handlers of the TApp class. This splits out sometime a lots of code and had the advantage that the TApp class can be used in any other project, eg a service. --- Rgds, Wilfried http://www.mestdagh.biz _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

