Jul 14, 2003 #1 R rufus Freshman Joined Jul 7, 2003 Messages 28 Location Arlington,TX Iam getting errors in Dim thrd as New ThreadStart(AddressOf display) dim thrd_str
Jul 14, 2003 #2 R rufus Freshman Joined Jul 7, 2003 Messages 28 Location Arlington,TX Sorry, the complete problem is Dim thrd as New ThreadStart(AddressOf display) Dim thrd_str as New Thread(thrd) thrd.start() I have seen this code is some book and want to implement it. There is no ThreadStart, I cannot write this code, there is no threadstart or Thread. Iam using VB.NET Developer. can any one help me.
Sorry, the complete problem is Dim thrd as New ThreadStart(AddressOf display) Dim thrd_str as New Thread(thrd) thrd.start() I have seen this code is some book and want to implement it. There is no ThreadStart, I cannot write this code, there is no threadstart or Thread. Iam using VB.NET Developer. can any one help me.
Jul 14, 2003 #3 M mutant Ultimate Contributor Joined Jan 19, 2003 Messages 1,771 Location Enfield, CT, USA Did you import the Threading namespace? Visual Basic: Imports System.Threading If you say its not there then this is the problem.
Did you import the Threading namespace? Visual Basic: Imports System.Threading If you say its not there then this is the problem.