Posts

Showing posts with the label Multithreading

Createing threads for a windows form

I am wrining a program that has lenghtly process which si casing my UI to freeze. I now how to the solve the probelm which is create thread and let it do the processing. Now this new ground for me so I went looking for some explames on how to this and I found this link CodeGuru: Maintaining a Responsive UI , which I found easy to follow, that explains about UI thread and some of the probelms that can happen.

Multithreading .Net C#

Here is a list of articles that makes threading sound easy to do: Multithreading Part I: Multithreading and Multitasking Multithreading Part 2: Understanding the System.Threading.Thread Class Multithreading Part 3: Thread Synchronization Multithreading Part 4: The ThreadPool, Timer Classes and Asynchronous Programming Discussed