[求助]关于线程的问题
Imports System.ThreadingImports System.Diagnostics
Module Module1
Sub main()
Dim f1 As New Form1
Dim thrd1 As Thread
thrd1 = New Thread(New ThreadStart(AddressOf f1.Show))
thrd1.Start()
End Sub
End Module
窗口一闪而过
这是甚么原因啊
[此贴子已经被作者于2006-10-10 22:12:51编辑过]