Issue with component creation: field ends up nil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:35:30Z http://stackoverflow.com/feeds/question/707696 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/707696/issue-with-component-creation-field-ends-up-nil 1 Issue with component creation: field ends up nil Jamo 2009-04-01T23:10:51Z 2009-04-01T23:32:32Z <p>This is a continuation of the project I was working on here: <a href="http://stackoverflow.com/questions/692173/circular-reference-issue-with-classes-which-use-each-other">http://stackoverflow.com/questions/692173/circular-reference-issue-with-classes-which-use-each-other</a></p> <p>The advice received there fixed the ciruclar reference problem (again, thanks for the help). Now I'm wrestling w/something else: TcmDataPanel.FObservingDataPanels always ends up = nil, apparently because it never gets created. (Initially I was getting an Access Violation, but on further testing it turned out that FObserver was always nil). </p> <p>Here is the relevant code (it is a TFrame unit, with TcmTPDataPanel being the TFrame descednent):</p> <pre><code>unit cmTPDataPanelFrame; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cmTPBasePanelFrame, cmTPPanels, nxdb, nxllComponent; type TcmTPDataConnector = class; TcmTPDataPanel = class(TcmTPBasePanel) Database: TnxDatabase; Session: TnxSession; private FDataConnector: TcmTPDataConnector; MyNxDataBase: TnxDatabase; MyNxSession: TnxSession; MyRefNxDataBase: TnxDatabase; protected procedure Disconnect; virtual; abstract; procedure Refresh; virtual; procedure Requery; virtual; abstract; public procedure Connect; published property DataConnector: TcmTPDataConnector read FDataConnector write FDataConnector; end; TcmTPCustomDataConnector = class(TComponent) private FDatabase: TnxDatabase; FObservingDataPanels: TList; FTableForCategories: TnxTable; FTableForItemCategoryLinks: TnxTable; FTableForItems: TnxTable; procedure SetTableForItemCategoryLinks(const Value: TnxTable); protected procedure IterateObservers; public constructor Create(AOwner: TComponent); destructor Destroy; override; procedure Register(Instance: TcmTPDataPanel); procedure ReportObservers; procedure Unregister(Instance: TcmTPDataPanel); published property Database: TnxDatabase read FDatabase write FDatabase; property TableForCategories: TnxTable read FTableForCategories write FTableForCategories; property TableForItemCategoryLinks: TnxTable read FTableForItemCategoryLinks write SetTableForItemCategoryLinks; property TableForItems: TnxTable read FTableForItems write FTableForItems; end; TcmTPDataConnector = class(TcmTPCustomDataConnector) end; var cmTPDataPanel: TcmTPDataPanel; implementation </code></pre> <p>=== and ===</p> <pre><code>{ *************************** TcmTPCustomDataConnector *************************** } constructor TcmTPCustomDataConnector.Create(AOwner: TComponent); begin ShowMessage('TcmTPCustomDataConnector.Create entered.'); // inherited Create(AOwner); // TODO : check duplicate FObservingDataPanels := TList.Create(); end; destructor TcmTPCustomDataConnector.Destroy; begin FreeAndNil(FObservingDataPanels); //inherited Destroy; // TODO : check duplicate end; </code></pre> <p>The ShowMessage line that I expect to run on cmTPDataConnector.Create never shows up, which makes me think it's not inheriting the Create method from TcmTPCUstomDataConnector. Shouldn't it be? </p> <p>It "feels" like there is something obvious I'm missing, but I'm not seeing it. :-\</p> <p>Two questions:</p> <p>1) Why is FObservingDataPanels not getting created? <br> 2) The "// inherited Create(AOwner); // TODO : check duplicate" and "//inherited Destroy; // TODO : check duplicate" lines were put in by ModelMaker at some point. Should they be uncommented? </p> <p>P.S. Obviously, I'm still learning about component creation and inheritance. Any other input and advice is welcome.</p> <p>P.P.S. Lots of questions from me today. Feel free to let me know if I need to drop it down a notch.... (just having a bonus lots-of-questions day here).</p> <p>Thanks in advance for any and all h http://stackoverflow.com/questions/707696/issue-with-component-creation-field-ends-up-nil/707725#707725 3 Answer by MarkusQ for Issue with component creation: field ends up nil MarkusQ 2009-04-01T23:23:10Z 2009-04-01T23:23:10Z <p>I'm rusty on Delphi, but I think you may need an "override" on your constructor declaration.</p> http://stackoverflow.com/questions/707696/issue-with-component-creation-field-ends-up-nil/707739#707739 10 Answer by Nick Hodges for Issue with component creation: field ends up nil Nick Hodges 2009-04-01T23:32:32Z 2009-04-01T23:32:32Z <p>You need to override your constructor, and then call inherited as the /first/ thing in that constructor.</p> <pre><code> public constructor Create(AOwner: TComponent); override; constructor TcmTPCustomDataConnector.Create(AOwner: TComponent); begin inherited Create(AOwner); // TODO : check duplicate ShowMessage('TcmTPCustomDataConnector.Create entered.'); FObservingDataPanels := TList.Create(); end; </code></pre>