views:

202

answers:

4

Hi guys, I'm looking for some help in finding some decent tutorials off the web to help supplement what I have learned in the book I am reading. If any of you guys got some tutorials that include UI Threading also, that would be brilliant ! UI Threading is not essential at the moment and so far the subject has been O.K but its not what I expected after the past two days being my first ever encounter with the topic.

Also naturally the tutorials should include multi threading and etc .... i naturally imagine good tuts .. do eventually lead on to this.

Thanks, Ibrar

+9  A: 

From Jon Skeet, a 16-part walk through of different scenarios, challenges and options for programming with threads in .NET. This part (Threading in Windows Forms) deals specifically in relation to interacting between UI and threads.

Timothy Carter
+1 for perfect timing! I ran into the Winforms threading problem literally 30 minutes ago when running some sample code from a controls vendor. Now, here's a solution, handed to me on a platter.
Tom Bushell
+13  A: 

Here's my fave:

Threading in C#

Jay Riggs
Just what the doctor ordered. Ty
IbrarMumtaz
+2  A: 

Safe, Simple Multithreading in Windows Forms is also pretty good. Make sure to check out Parts II and III also. IMO, the albahari site Jay posted is probably the best you will find.

Asynchronous Windows Forms Programming is another good one.

SwDevMan81
A: 

Code Project has a great article on lower-level .Net asynchronous invocation methods, building up to Threads.

Dour High Arch