After reading this question, I was wondering if it is possible to modify TCustomEdit to check for the text width in a way that all of its descendants inherit the changes too?
|
Most changes you make to
|
|||||||||||
|
|
TCustomEdit is in stdctrls Unit. to test out what changes would be inherited, don't modify the one on the VCL path, copy stdctrls to your main project folder and modify it there. Delphi will find your modified unit first and will use it. This leaves all other projects and VCL patches using/updating the original unit. Your patched unit would not be affected. If I am right then modifying it even in the new location would cause a rebuild of the relevant VCL units. So when switching to other projects you will need to do a build so it recompiles with the VCL parts using the original unit in effect "switching back". |
|||
|
|
TCustomEdit, will its descendants show the modified behavior? – iMan Biglari Sep 23 '12 at 9:04