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

C#

 
GeneralRe: How to Change the string to Upper Casing Pin
Alex@UEA8-Sep-06 4:08
Alex@UEA8-Sep-06 4:08 
GeneralRe: How to Change the string to Upper Casing Pin
zxc898-Sep-06 4:27
zxc898-Sep-06 4:27 
AnswerRe: How to Change the string to Upper Casing Pin
User 66588-Sep-06 2:42
User 66588-Sep-06 2:42 
AnswerRe: How to Change the string to Upper Casing Pin
eggsovereasy8-Sep-06 3:33
eggsovereasy8-Sep-06 3:33 
AnswerRe: How to Change the string to Upper Casing Pin
Guffa8-Sep-06 4:22
Guffa8-Sep-06 4:22 
Questioncrystal reports in C# Pin
yousafzai8-Sep-06 1:10
yousafzai8-Sep-06 1:10 
Questionhow to add event over a control at runtime Pin
shaz jazz8-Sep-06 0:56
shaz jazz8-Sep-06 0:56 
AnswerRe: how to add event over a control at runtime Pin
J4amieC8-Sep-06 1:10
J4amieC8-Sep-06 1:10 
Firstly you can use the same event handler for all your dynamic checkboxes, you can always determine WHICH one was actually checked (or unchecked) using the sender parameter

private void DynamicCheckboxes_CheckedChanged(object sender, EventArgs e)<br />
{<br />
   CheckBox checkBox = (CheckBox)sender;<br />
   Debug.Write("CheckBox: " + checkBox.Name + " checked:" + checkBox.Checked.ToString());<br />
}


Now when you dynamically create a checkbox in code you add an event handler thusly:
<br />
CheckBox myCheckBox = new CheckBox();<br />
myCheckBox.CheckedChanged += new EventHandler(DynamicCheckboxes_CheckedChanged_;



AnswerRe: how to add event over a control at runtime Pin
ejuanpp8-Sep-06 1:27
ejuanpp8-Sep-06 1:27 
AnswerRe: how to add event over a control at runtime Pin
Sebastian Schneider8-Sep-06 2:48
Sebastian Schneider8-Sep-06 2:48 
QuestionVS Tools for Office Pin
Michael A. Barnhart8-Sep-06 0:45
Michael A. Barnhart8-Sep-06 0:45 
QuestionComboBox MouseDoubleClick Pin
johnrc8-Sep-06 0:13
johnrc8-Sep-06 0:13 
AnswerRe: ComboBox MouseDoubleClick Pin
johnrc9-Sep-06 17:26
johnrc9-Sep-06 17:26 
QuestionError in .net remoting!! Pin
samtam8-Sep-06 0:06
samtam8-Sep-06 0:06 
AnswerRe: Error in .net remoting!! Pin
Not Active8-Sep-06 2:21
mentorNot Active8-Sep-06 2:21 
Questionhow can i read Node from xml file using XmlNodeReader Pin
premkamalg8-Sep-06 0:04
premkamalg8-Sep-06 0:04 
AnswerRe: how can i read Node from xml file using XmlNodeReader Pin
Not Active8-Sep-06 2:10
mentorNot Active8-Sep-06 2:10 
QuestionSlowish visiualisation with winform Pin
BadKarma7-Sep-06 23:49
BadKarma7-Sep-06 23:49 
AnswerRe: Slowish visiualisation with winform Pin
Bhupi Bhai8-Sep-06 0:04
Bhupi Bhai8-Sep-06 0:04 
GeneralRe: Slowish visiualisation with winform Pin
Insincere Dave8-Sep-06 5:21
Insincere Dave8-Sep-06 5:21 
QuestionManaging database deletions? Pin
kbalias7-Sep-06 23:44
kbalias7-Sep-06 23:44 
AnswerRe: Managing database deletions? Pin
ic3b3rg38-Sep-06 12:02
ic3b3rg38-Sep-06 12:02 
QuestionHow to change the BackColor of the Data Grid View Control Row Headers and Column Headers in Visual Studio 2005 C# DotNet Pin
ajay kr. boosar7-Sep-06 23:24
ajay kr. boosar7-Sep-06 23:24 
AnswerRe: How to change the BackColor of the Data Grid View Control Row Headers and Column Headers in Visual Studio 2005 C# DotNet Pin
Ed.Poore7-Sep-06 23:27
Ed.Poore7-Sep-06 23:27 
QuestionSpeech to text (Speech recognition) documentation Pin
bluehai7-Sep-06 23:08
bluehai7-Sep-06 23:08 

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.