J
Jack Wright
Dear All,
When an application programmer subscribes to an event...I would like
the execution to take place in a FILO mechanism...f.e.x.
this.button1.Click += new System.EventHandler(this.MyOwnClick );
this.button1.Click += new System.EventHandler(this.button1_Click );
when button1.Click() event is called...
I would like that button1_Click method be called before
this.MyOwnClick...
How do I achieve that?
Please help...
TALIA
Many Regards
Jack
When an application programmer subscribes to an event...I would like
the execution to take place in a FILO mechanism...f.e.x.
this.button1.Click += new System.EventHandler(this.MyOwnClick );
this.button1.Click += new System.EventHandler(this.button1_Click );
when button1.Click() event is called...
I would like that button1_Click method be called before
this.MyOwnClick...
How do I achieve that?
Please help...
TALIA
Many Regards
Jack