home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch8-CreateAThread / Module1.vb < prev   
Text File  |  2001-08-09  |  305b  |  15 lines

  1. Module Module1
  2.     
  3.     Sub MyThread()
  4.         Console.WriteLine("This runs in a seperate thread")
  5.         Console.ReadLine()
  6.     End Sub
  7.  
  8.     Sub Main()
  9.         Dim runThread As _
  10.             New System.Threading.Thread(AddressOf MyThread)
  11.         runThread.Start()
  12.     End Sub
  13.  
  14. End Module
  15.