Click here to Skip to main content
15,921,028 members
Home / Discussions / C#
   

C#

 
AnswerRe: Creating parent/child relationships in an array of data [modified] Pin
Calin Tatar18-Feb-09 13:30
Calin Tatar18-Feb-09 13:30 
QuestionControls pre-caching Pin
Member 183214618-Feb-09 12:37
Member 183214618-Feb-09 12:37 
AnswerRe: Controls pre-caching Pin
Luc Pattyn18-Feb-09 13:05
sitebuilderLuc Pattyn18-Feb-09 13:05 
QuestionConnect to remote SQL Server Pin
Gindi Bar Yahav18-Feb-09 11:01
Gindi Bar Yahav18-Feb-09 11:01 
AnswerRe: Connect to remote SQL Server Pin
Luis Alonso Ramos18-Feb-09 11:39
Luis Alonso Ramos18-Feb-09 11:39 
AnswerRe: Connect to remote SQL Server Pin
EliottA18-Feb-09 11:41
EliottA18-Feb-09 11:41 
GeneralRe: Connect to remote SQL Server Pin
Gindi Bar Yahav18-Feb-09 19:25
Gindi Bar Yahav18-Feb-09 19:25 
GeneralRe: Connect to remote SQL Server Pin
EliottA18-Feb-09 19:29
EliottA18-Feb-09 19:29 
Questiondatabinding + INotifyPropertyChanged Pin
jogisarge18-Feb-09 9:58
jogisarge18-Feb-09 9:58 
AnswerRe: databinding + INotifyPropertyChanged Pin
ABitSmart18-Feb-09 18:22
ABitSmart18-Feb-09 18:22 
QuestionSupport to create graph editor ? [modified] Pin
GuimaSun18-Feb-09 9:24
GuimaSun18-Feb-09 9:24 
AnswerRe: Support to create graph editor ? Pin
Henry Minute18-Feb-09 10:18
Henry Minute18-Feb-09 10:18 
QuestionDynamically create datagrid with prepopulated text boxes Pin
jullesbonnot18-Feb-09 8:20
jullesbonnot18-Feb-09 8:20 
AnswerRe: Dynamically create datagrid with prepopulated text boxes Pin
Calin Tatar18-Feb-09 9:14
Calin Tatar18-Feb-09 9:14 
GeneralRe: Dynamically create datagrid with prepopulated text boxes Pin
Calin Tatar18-Feb-09 9:22
Calin Tatar18-Feb-09 9:22 
QuestionJagged array initialization Pin
t_feras18-Feb-09 7:37
t_feras18-Feb-09 7:37 
AnswerRe: Jagged array initialization Pin
harold aptroot18-Feb-09 10:12
harold aptroot18-Feb-09 10:12 
Just place it in a temporary variable first?
warning: untested
BUTTON_ID[] defaultids = new BUTTON_ID[] {BUTTON_ID.DEFAULT, BUTTON_ID.EXAMINE, BUTTON_ID.CLIP,
                                          BUTTON_ID.GAIN, BUTTON_ID.PAGE1, BUTTON_ID.FROZEN,
                                          BUTTON_ID.SAVE, BUTTON_ID.PAGE2, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.DECREASE_LENGTH, BUTTON_ID.INCREASE_LENGTH,
                                          BUTTON_ID.DECREASE_WIDTH, BUTTON_ID.INCREASE_WIDTH};
BUTTON_ID[][] CONTEXT_MENU_LIST = new BUTTON_ID[][]
            {
                  //System off
                  new BUTTON_ID[]{BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.INACTIVE},
              
                  //Default Screen button IDs
                  defaultids,

                  //Clip View Screen
                  new BUTTON_ID[] {BUTTON_ID.INACTIVE, BUTTON_ID.PAGE1, BUTTON_ID.FROZEN,
                                          BUTTON_ID.AUTO_GAIN, BUTTON_ID.CLIP, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.SAVE, BUTTON_ID.PAGE2, BUTTON_ID.INACTIVE,
                                          BUTTON_ID.INACTIVE, BUTTON_ID.INACTIVE,BUTTON_ID.INACTIVE,     
                                          BUTTON_ID.INACTIVE},                 

                  //Screen2 button IDs
                  defaultids,

                  //Screen3 button IDs
                  defaultids
            };



GeneralRe: Jagged array initialization Pin
t_feras18-Feb-09 10:37
t_feras18-Feb-09 10:37 
GeneralRe: Jagged array initialization Pin
harold aptroot18-Feb-09 11:06
harold aptroot18-Feb-09 11:06 
JokeRe: Jagged array initialization Pin
DaveyM6918-Feb-09 11:09
professionalDaveyM6918-Feb-09 11:09 
GeneralRe: Jagged array initialization Pin
harold aptroot18-Feb-09 11:14
harold aptroot18-Feb-09 11:14 
GeneralRe: Jagged array initialization Pin
t_feras18-Feb-09 11:15
t_feras18-Feb-09 11:15 
GeneralRe: Jagged array initialization Pin
harold aptroot18-Feb-09 12:10
harold aptroot18-Feb-09 12:10 
GeneralRe: Jagged array initialization Pin
t_feras18-Feb-09 12:31
t_feras18-Feb-09 12:31 
AnswerRe: Jagged array initialization Pin
Luc Pattyn18-Feb-09 13:10
sitebuilderLuc Pattyn18-Feb-09 13:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.