Click here to Skip to main content
15,887,428 members
Home / Discussions / C#
   

C#

 
GeneralRe: Dialog opening behavior on a dual monitor system Pin
XRaheemX7-Oct-05 8:58
XRaheemX7-Oct-05 8:58 
QuestionDatabound Textbox and TabControl Pin
rich_wenger7-Oct-05 7:35
rich_wenger7-Oct-05 7:35 
Questionstring to int in C#? Pin
Lilli Alexis7-Oct-05 7:22
Lilli Alexis7-Oct-05 7:22 
AnswerRe: string to int in C#? Pin
XRaheemX7-Oct-05 7:28
XRaheemX7-Oct-05 7:28 
AnswerRe: string to int in C#? Pin
leppie7-Oct-05 7:29
leppie7-Oct-05 7:29 
AnswerRe: string to int in C#? Pin
leejo12310-Oct-05 3:16
leejo12310-Oct-05 3:16 
Questioncheckbox in datagrid Pin
ahager7-Oct-05 7:05
ahager7-Oct-05 7:05 
AnswerRe: checkbox in datagrid Pin
XRaheemX7-Oct-05 7:15
XRaheemX7-Oct-05 7:15 
Can you post a code snippet of how you are acquiring this task? It seems to me that once you store the object (CheckBox) in the datagrid all you need to do is simply pull the object back out and read/change its properties.

<code>
foreach(DataGridItem item in DataGrid.Items)
{
   if(item is CheckBox)
   {
     CheckBox cb = (CheckBox)item;
     cb.Checked = true;
   }
}
</code>


-- modified at 13:15 Friday 7th October, 2005
GeneralRe: checkbox in datagrid Pin
ahager7-Oct-05 7:17
ahager7-Oct-05 7:17 
GeneralRe: checkbox in datagrid Pin
XRaheemX7-Oct-05 7:20
XRaheemX7-Oct-05 7:20 
GeneralRe: checkbox in datagrid Pin
ahager7-Oct-05 7:27
ahager7-Oct-05 7:27 
GeneralRe: checkbox in datagrid Pin
XRaheemX7-Oct-05 7:32
XRaheemX7-Oct-05 7:32 
GeneralRe: checkbox in datagrid Pin
ahager7-Oct-05 8:00
ahager7-Oct-05 8:00 
GeneralRe: checkbox in datagrid Pin
XRaheemX7-Oct-05 8:15
XRaheemX7-Oct-05 8:15 
QuestionOut Of MEmory Pin
Greeky7-Oct-05 6:48
Greeky7-Oct-05 6:48 
AnswerRe: Out Of MEmory Pin
XRaheemX7-Oct-05 6:57
XRaheemX7-Oct-05 6:57 
GeneralRe: Out Of MEmory Pin
Greeky7-Oct-05 7:31
Greeky7-Oct-05 7:31 
GeneralRe: Out Of MEmory Pin
Tom Larsen7-Oct-05 7:37
Tom Larsen7-Oct-05 7:37 
GeneralRe: Out Of MEmory Pin
XRaheemX7-Oct-05 7:39
XRaheemX7-Oct-05 7:39 
QuestionCursor position Pin
Agyeman7-Oct-05 6:33
Agyeman7-Oct-05 6:33 
AnswerRe: Cursor position Pin
Daniel Grunwald7-Oct-05 6:38
Daniel Grunwald7-Oct-05 6:38 
GeneralRe: Cursor position Pin
XRaheemX7-Oct-05 7:00
XRaheemX7-Oct-05 7:00 
GeneralRe: Cursor position Pin
Agyeman7-Oct-05 8:28
Agyeman7-Oct-05 8:28 
GeneralRe: Cursor position Pin
XRaheemX7-Oct-05 8:47
XRaheemX7-Oct-05 8:47 
GeneralRe: Cursor position Pin
Agyeman7-Oct-05 9:01
Agyeman7-Oct-05 9:01 

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.