| Author: vipul 05 Sep 2008 | Member Level: Diamond | Rating: Points: 3 |
hi, I am implement threading my application in that i run two function together if both completed then do somthing other wise wise not Function checktheuser() Dim th1 As New Thread(checktheuser1) th1.Start()
Dim th2 As New Threadchecktheuser2) th2.Start() th1.Join() th2.Join() end function
vipul, http://dongavipul.blogspot.com
|
| Author: Dotnet_CHD 05 Sep 2008 | Member Level: Bronze | Rating: Points: 2 |
My main application should get first preference and it should run in its normal way without any interruption, but when other thread or utility got any fee slice from processor it should get that.
|