I have a windows form on the main thread and another thread that does some calculations. I\'d like to update the status bar on my form from the work being done in the other
Make sure that you only update the user interface from the main thread or else you will have problems. You can switch your thread context by calling Invoke. There's a good post here on that.