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
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
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.