Ask a Question related to Mac Programming, Design and Development.
-
Alain Birtz #1
How to select a button in a matrix of push button (Cocoa) ?
The radion button was created with Interface Builder.
How to make a default (selected) button in this matrix ?
Alain Birtz Guest
-
Edit, Update, Cancel Push button question
I have a Edit, Update, Cancel column in my datagrid form modifying the data in each row. These buttons are of type PushButton rather than... -
toggle states in fc push button component?
i am using the fc push button component in flash mx, but i would like to be able to on press for the button to stay pressed, until pressed again,... -
[COCOA] Dynamic button?
In article <1fzrife.s6p9421wrpd7mN%usenet@mile23.com>, usenet@mile23.com (Paul Mitchum) wrote: This will only work if the button actually... -
Problems with Push Button Event in DataGrid
??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????... -
Popup Window on Button Push
Can anyone tell me how I can open a new browser window when a button is pressed? I tried adding an <a href=...> encapsulating the button, but it... -
Michael Milvich #2
Re: How to select a button in a matrix of push button (Cocoa) ?
[email]abz@videotron.ca[/email] (Alain Birtz) wrote in message news:<abz-2807030845040001@192.168.1.3>...
If I am understanding you correctly, you just need to send the matrix> The radion button was created with Interface Builder.
> How to make a default (selected) button in this matrix ?
a
- (void)selectCellAtRow:(int)row column:(int)column
message to select the radio button at a given row and column in a
matrix. If you don't want to deal with rows & columns you can also use
- (BOOL)selectCellWithTag:(int)anInt
assuming that you set up tags for each radio button in IB.
Michael
Michael Milvich Guest



Reply With Quote

