Delphi: Delete visual component references from inherited forms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:35:38Z http://stackoverflow.com/feeds/question/295383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295383/delphi-delete-visual-component-references-from-inherited-forms 2 Delphi: Delete visual component references from inherited forms Erick Sasse 2008-11-17T11:42:26Z 2008-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#295430 3 Answer by Ulrich Gerhardt for Delphi: Delete visual component references from inherited forms Ulrich Gerhardt 2008-11-17T12:04:10Z 2008-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#295431 0 Answer by Gamecat for Delphi: Delete visual component references from inherited forms Gamecat 2008-11-17T12:04:28Z 2008-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>