Board index » delphi » TCustomForms only
Rollie Tyler
![]() Delphi Developer |
Sun, 28 Nov 2004 18:27:04 GMT
|
Rollie Tyler
![]() Delphi Developer |
Sun, 28 Nov 2004 18:27:04 GMT
TCustomForms only
Hi,
I'd like to build an application using a number of similarly looking and behaving forms. Is it possible to create such a template and add it to the File->New dialog, or even make Since TApplication.MainForm is of type TForm, is it possible to create an application Rollie Tyler |
Humberto Jemm
![]() Delphi Developer |
Sun, 28 Nov 2004 21:17:23 GMT
Re:TCustomForms onlyHi, Quote>Hi, Quote>Delphi use only this form as template ? saved to the repository and will be available in the File->New dialog under Forms or any other tab you choose. Quote>Since TApplication.MainForm is of type TForm, is it possible to create an After you start a new application, simply add another form of 'TDerivedForm' type to it (using the File->New dialog), and delete the original TForm form Delphi added. You can even choose to inherit from your TDerivedForm, so that changes made to the form saved in the repository will be propagated to all the forms of that type in your apps next time you build them. Humberto Jemma (Brazil) ------------------------------- |
Rollie Tyle
![]() Delphi Developer |
Sun, 28 Nov 2004 21:21:01 GMT
Re:TCustomForms onlyThank you very much !!!!! One more question: I'd like to inherit from TCustomForm instead of TForm, because I want Rollie |