Click here to Skip to main content
15,913,570 members
Home / Discussions / C#
   

C#

 
AnswerRe: how do make a column in a datagrid readonly Pin
Heath Stewart14-Apr-04 2:16
protectorHeath Stewart14-Apr-04 2:16 
GeneralRe: how do make a column in a datagrid readonly Pin
robmays14-Apr-04 2:22
robmays14-Apr-04 2:22 
GeneralRe: how do make a column in a datagrid readonly Pin
Heath Stewart14-Apr-04 2:29
protectorHeath Stewart14-Apr-04 2:29 
GeneralRe: how do make a column in a datagrid readonly Pin
robmays14-Apr-04 2:34
robmays14-Apr-04 2:34 
GeneralRe: how do make a column in a datagrid readonly Pin
Heath Stewart14-Apr-04 2:37
protectorHeath Stewart14-Apr-04 2:37 
GeneralRe: how do make a column in a datagrid readonly Pin
robmays14-Apr-04 2:39
robmays14-Apr-04 2:39 
GeneralRe: how do make a column in a datagrid readonly Pin
robmays14-Apr-04 3:59
robmays14-Apr-04 3:59 
GeneralRe: how do make a column in a datagrid readonly Pin
Heath Stewart14-Apr-04 4:12
protectorHeath Stewart14-Apr-04 4:12 
GeneralRe: how do make a column in a datagrid readonly Pin
robmays14-Apr-04 4:35
robmays14-Apr-04 4:35 
Generaltab control slow Pin
robmays14-Apr-04 1:09
robmays14-Apr-04 1:09 
GeneralRe: tab control slow Pin
Anonymous14-Apr-04 2:21
Anonymous14-Apr-04 2:21 
GeneralRe: tab control slow Pin
robmays14-Apr-04 2:25
robmays14-Apr-04 2:25 
QuestionDinamic array or array resizing? Pin
Paolo Ponzano13-Apr-04 23:59
Paolo Ponzano13-Apr-04 23:59 
AnswerRe: Dinamic array or array resizing? Pin
SJ_Phoenix14-Apr-04 0:30
SJ_Phoenix14-Apr-04 0:30 
yes there is a way to use a dynamical array: the class
ArrayList (I guess in System.Collections )...it automatically resizes when necessary, and thus it has no fixed length as a "normal" array in C#....but ArrayList stores the assigned values as objects (aka boxing), so you have to cast when you return something from the ArrayList....

for example:

int i = 5;

ArrayList al = new ArrayList();
al.Add(i);

int storedInt = (int) al[0]; //unboxing
GeneralRe: Dinamic array or array resizing? Pin
Paolo Ponzano14-Apr-04 1:19
Paolo Ponzano14-Apr-04 1:19 
GeneralRe: Dinamic array or array resizing? Pin
Heath Stewart14-Apr-04 2:18
protectorHeath Stewart14-Apr-04 2:18 
GeneralAPI using in C# Pin
d_h_nam13-Apr-04 22:02
d_h_nam13-Apr-04 22:02 
GeneralRe: API using in C# Pin
Colin Angus Mackay13-Apr-04 22:05
Colin Angus Mackay13-Apr-04 22:05 
GeneralRe: API using in C# Pin
d_h_nam13-Apr-04 22:41
d_h_nam13-Apr-04 22:41 
GeneralRe: API using in C# Pin
Jay Shankar13-Apr-04 22:12
Jay Shankar13-Apr-04 22:12 
GeneralRe: API using in C# Pin
d_h_nam13-Apr-04 22:42
d_h_nam13-Apr-04 22:42 
GeneralDisable the CTRL+ mouse wheel scroll text resize Pin
Jay Shankar13-Apr-04 20:45
Jay Shankar13-Apr-04 20:45 
GeneralRe: Disable the CTRL+ mouse wheel scroll text resize Pin
Heath Stewart14-Apr-04 2:26
protectorHeath Stewart14-Apr-04 2:26 
GeneralRe: Disable the CTRL+ mouse wheel scroll text resize Pin
Jay Shankar14-Apr-04 15:57
Jay Shankar14-Apr-04 15:57 
GeneralRe: Disable the CTRL+ mouse wheel scroll text resize Pin
Heath Stewart14-Apr-04 17:16
protectorHeath Stewart14-Apr-04 17:16 

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.