Click here to Skip to main content
15,897,334 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Split one datatable to many datatables? Pin
dan!sh 11-Aug-09 22:14
professional dan!sh 11-Aug-09 22:14 
AnswerRe: How to Split one datatable to many datatables? PinPopular
Pete O'Hanlon11-Aug-09 22:36
mvePete O'Hanlon11-Aug-09 22:36 
GeneralRe: How to Split one datatable to many datatables? Pin
NguyenDzung12-Aug-09 17:40
NguyenDzung12-Aug-09 17:40 
GeneralRe: How to Split one datatable to many datatables? Pin
Prince Antony G5-Jan-12 22:32
Prince Antony G5-Jan-12 22:32 
QuestionGet what object a button belongs to? Pin
xkrja11-Aug-09 21:54
xkrja11-Aug-09 21:54 
AnswerRe: Get what object a button belongs to? Pin
Pete O'Hanlon11-Aug-09 21:58
mvePete O'Hanlon11-Aug-09 21:58 
GeneralRe: Get what object a button belongs to? Pin
xkrja11-Aug-09 22:09
xkrja11-Aug-09 22:09 
AnswerRe: Get what object a button belongs to? Pin
stancrm11-Aug-09 22:07
stancrm11-Aug-09 22:07 
Yes. There are 5 MyClass instances and you can use one method for all events. This is better :

private List<MyButton> myButtons = new List<MyButton>();
private void CreateButtons()
{
  for(int i = 0; i < 5; i++)
  {
    MyButton myButton = new MyButton();
    myButton.MyInt = i;
    myButton.Click += new EventHandler(myButton_Click);
    myButtons.Add(myButton);
  }
}

private void myButton_Click(object sender, EventArgs e)
{
  MyButton myButton = sender as MyButton;
  if(myButton != null)
  {
    MessageBox.Show(myButton.MyInt.ToString());
  }
}


public class MyButton : Button
{
  private int myInt;

  public int MyInt
  {
    get { return myInt; }
    set { myInt = value; }
  }
}

GeneralRe: Get what object a button belongs to? Pin
xkrja11-Aug-09 22:19
xkrja11-Aug-09 22:19 
AnswerRe: Get what object a button belongs to? Pin
Luc Pattyn11-Aug-09 23:59
sitebuilderLuc Pattyn11-Aug-09 23:59 
AnswerRe: Get what object a button belongs to? Pin
Daniel Grunwald12-Aug-09 2:53
Daniel Grunwald12-Aug-09 2:53 
Questiontext box multiline Pin
Vivek Vijayan11-Aug-09 21:37
Vivek Vijayan11-Aug-09 21:37 
AnswerRe: text box multiline Pin
stancrm11-Aug-09 21:44
stancrm11-Aug-09 21:44 
AnswerRe: text box multiline Pin
Ashfield11-Aug-09 21:44
Ashfield11-Aug-09 21:44 
AnswerRe: text box multiline Pin
dan!sh 11-Aug-09 22:18
professional dan!sh 11-Aug-09 22:18 
QuestionException in access to textbox ? Pin
Mohammad Dayyan11-Aug-09 21:30
Mohammad Dayyan11-Aug-09 21:30 
AnswerRe: Exception in access to textbox ? Pin
stancrm11-Aug-09 21:40
stancrm11-Aug-09 21:40 
GeneralRe: Exception in access to textbox ? Pin
Mohammad Dayyan12-Aug-09 0:15
Mohammad Dayyan12-Aug-09 0:15 
AnswerRe: Exception in access to textbox ? Pin
Luc Pattyn12-Aug-09 0:01
sitebuilderLuc Pattyn12-Aug-09 0:01 
Questionthreading in a Custom Collection Pin
Juvil John11-Aug-09 21:29
Juvil John11-Aug-09 21:29 
AnswerRe: threading in a Custom Collection Pin
stancrm11-Aug-09 21:53
stancrm11-Aug-09 21:53 
GeneralRe: threading in a Custom Collection [modified] Pin
Juvil John11-Aug-09 22:51
Juvil John11-Aug-09 22:51 
AnswerRe: threading in a Custom Collection Pin
Nicholas Butler12-Aug-09 1:54
sitebuilderNicholas Butler12-Aug-09 1:54 
QuestionCustom Installation Pin
lune1211-Aug-09 21:05
lune1211-Aug-09 21:05 
Questionupdate:Edit datagridview Pin
abdolrab11-Aug-09 21:00
abdolrab11-Aug-09 21:00 

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.