Application Thread
Application Thread
Imports System.Windows.Forms
End Sub
DumpThreadID("UI Thread")
Dim dummythread As System.Threading.Thread = New System.Threading.Thre
ad(New System.Threading.ThreadStart(AddressOf DummyThreadStart))
dummythread.Start()
Application.Run(New Form1())
End Sub
End Class