Path: utzoo!attcan!uunet!samsung!sdd.hp.com!uakari.primate.wisc.edu!ames!ads.com!saturn!stuart From: stuart@previous.ADS.COM (Stuart Crawford) Newsgroups: comp.sys.next Subject: Re: IB help Message-ID: Date: 13 Jun 90 17:49:39 GMT References: <1990Jun13.031640.1835@gpu.utcs.utoronto.ca> Sender: usenet@ads.com (USENET News) Organization: Advanced Decision Systems Lines: 19 In-Reply-To: judge@gpu.utcs.utoronto.ca's message of 13 Jun 90 03:16:40 GMT My guess is that you have instantiated TextEditor in the nib file. You should not do this, since the owner of the file should be a TextEditor. If you do have an instance of TextEditor in the file, the following will happen: You instantiate TextEditor from your program, which then loads the nib file. Since the nib file has an instance of TextEditor in it, it runs [TextEditor new] when loaded. This loads the nib file again, which runs new, which loads the nib file, which runs new, which.... Just get rid of the instance in the nib file, make sure the owner of the nib file is TextEditor, and connect your outlets to the file owner icon. Everything should be fine. Stuart Crawford Advanced Decision Systems stuart@ads.com --