I'm new to .NET 2
I have several events that get raised from a thread that is different from my winform thread. I don't want to check InvokeRequired for every control. So I'm guessing it's best to just let the event be raised via a callback on the winform thread instead.....

I havent used .NET in a while so I cant remember things
When I'm binding my event handler in the new thread, is there a way to bind the event so it would be called in the winform thread and not in the current thread?