Re: NSTextFieldDelegate issues

2011-06-17 Thread JAMES ROGERS
Wow! That was easy. Thank You! Jim On Jun 17, 2011, at 9:21 AM, Alexander Reichstadt wrote: > Try controlTextDidChange > > Am 17.06.2011 um 16:11 schrieb JAMES ROGERS: > >> I have an app with six (6) text fields. I need to know when the text in any >> of the text fields has changed so I can pr

Re: NSTextFieldDelegate issues

2011-06-17 Thread Alexander Reichstadt
Try controlTextDidChange Am 17.06.2011 um 16:11 schrieb JAMES ROGERS: > I have an app with six (6) text fields. I need to know when the text in any > of the text fields has changed so I can process them as a group. > > AppDelegate .h > @interface WK2CFGMacAppDelegate : NSObject NSTextFieldDele

NSTextFieldDelegate issues

2011-06-17 Thread JAMES ROGERS
I have an app with six (6) text fields. I need to know when the text in any of the text fields has changed so I can process them as a group. AppDelegate .h @interface WK2CFGMacAppDelegate : NSObject { outlets } actions - (void) textDidChange:(NSNotification *)aNotification; AppDelegate.