When an event is raised, the handler gets called. I'd like to know if the handler code runs in a separate thread.
thx,
Xmas.
Printable View
When an event is raised, the handler gets called. I'd like to know if the handler code runs in a separate thread.
thx,
Xmas.
It runs on the same thread. You can code it to run on a different thread.
Just for precision, it means that, for example, code executed when an event raised from Form1 will run on the same thread of Form1? This means that 2 events raised from Form1 cannot run their code in the same time, isn't it?
Thx,
Xmas