For example , I have two buttons A i B. When A will be clicked, B should
receive Click event.
Something like this - ...Send(A(sender), B(receiver), Click(event),
Arg(arguments))
Gawel
Joe
--
Joe Mayo, Author - C# Unleashed
http://www.amazon.com/exec/obidos/ASIN/067232122X/cstati
Free C# Tutorial @ C# Station
http://www.csharp-station.com
"Gawelek" <gaw...@NOSPAMEKpoczta.gazeta.pl> wrote in message
news:av002q$bh8$1...@news.tpi.pl...
HTH
Greg Low
Brisbane, Oztralia
"Gawelek" <gaw...@NOSPAMEKpoczta.gazeta.pl> wrote in message
news:av002q$bh8$1...@news.tpi.pl...
Yes, that's right. I use such a construction, but I am wondering if it is
possible to do it differnetly.
Gawel
"Gawelek" <gaw...@NOSPAMEKpoczta.gazeta.pl> wrote in message
news:av1des$d22$1...@news.tpi.pl...
It will be great solution, if I needed both of thet at the same time.
But I need sequential execution :
private void start_Click(object sender, System.EventArgs e) - it is for A
{
Computations.......
Raise_Click_Event_For_B
}
Gawel