Delphi: Delete visual component references from inherited forms - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:35:38Zhttp://stackoverflow.com/feeds/question/295383http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295383/delphi-delete-visual-component-references-from-inherited-forms2Delphi: Delete visual component references from inherited formsErick Sasse2008-11-17T11:42:26Z2008-11-17T12:04:28Z
<p>When I delete a visual component in a base form, and forget any references in inherited forms, my application only breaks in runtime.</p>
<p>What I normally do is to use a search tool to find references in .DFM, but I'm not completely satisfied with this method.</p>
<p>Do you have any better recommendations?</p>
http://stackoverflow.com/questions/295383/delphi-delete-visual-component-references-from-inherited-forms/295430#2954303Answer by Ulrich Gerhardt for Delphi: Delete visual component references from inherited formsUlrich Gerhardt2008-11-17T12:04:10Z2008-11-17T12:04:10Z<p>Hi Erick,</p>
<p>maybe <a href="http://cc.codegear.com/Item/25538" rel="nofollow">this</a> helps?</p>
<p>Uli.</p>
http://stackoverflow.com/questions/295383/delphi-delete-visual-component-references-from-inherited-forms/295431#2954310Answer by Gamecat for Delphi: Delete visual component references from inherited formsGamecat2008-11-17T12:04:28Z2008-11-17T12:04:28Z<p>Just to be sure, but have you used 'inherited' in the inherited dfm?</p>
<pre><code>inherited Form1: TForm1
Caption = 'Form1'
PixelsPerInch = 96
TextHeight = 13
end
</code></pre>
<p>If you have 'object' and not 'inherited' you get a lot of problems.</p>