Board index » delphi » Re: The dark side of visual form inheritance
Scott Roberts
![]() Delphi Developer |
Re: The dark side of visual form inheritance2003-08-29 10:13:21 PM delphi183 I'm not sure my current project could be classified as "extensive", but every form in the project (about 75 now) descends from a base form. I have a base form and 3 "functional" forms (one for scrolling data, one for grid data, one for modal editing of a row in a grid form) and everything else descends from one of those. I have had virtually no trouble with VFI. However, I rarely use the "visual" part of VFI. I use the base forms to implement code, not components. Perhaps my application is unique, but it's rare that the functionality of a specific form needs to be different from all the others. It makes coding easier and it keeps a consistent look and feel for the user. All in all, I like it. Just my 2 cents. "Daniel Mauric" <danny at neobee dot net>writes QuoteI use vfi extensively, and was quite happy with it until recently when I |