Event handler
just wondering if we can make an event handler call another event handler.
MyButton.clicks += new EventHandler(MyButton_Click);
//how do we make MyButton_Click() call yet another MyButton_Click2()?
because if I use MyButton.clicks += new EventHandler(MyButton_Click2()), it does not guarantee that MyButton_Click will execute before MyButton_Click2.
What advice do you have?
end------------------------------
Programmers aren't born, but are made from hardwork, effort and time.
To be a good one, requires more effort and hardwork.
Therefore N quality programmer = (N*hardwork)+(N*effort)+(N*time)