Re: Just starting out..... Please help
Re: Just starting out..... Please help
- Subject: Re: Just starting out..... Please help
- From: Graham Wihlidal <email@hidden>
- Date: Mon, 9 Jul 2001 00:20:07 -0600
You should really start variable and method names with a lowercase
character to distinguish them from class names.
Ok, I will accept this naming schema.
You defined LoginWindow_Display: in a class. An instance of that
class has to have been created for your button to work. So if that
instance were assigned to a variable named "object", your message-send
syntax would be:
[object LoginWindow_Display:nil];
Thank you
Use a NSSecureTextField. That's a NSTextField subclass.
InterfaceBuilder should give you the option of using NSSecureTextField
when you drag a NSTextField into a window.
I actually just figured this out after sending the message. :/ Thanks
anyways.
My BIGGEST woe, is how do I restrict a certain amount characters from
an editfield?
It can't go past 16 for my use (username, password, etc..)
Thank you,
Graham