A
Adam Honek
Hi all,
I'm launching a form in a new thread as follows below. The problem is the
form exits straight away.
How do I cause it to stay open until the form is closed?
The suspend won't work since I need to get UI events from the form controls.
Dim MyThread As System.Threading.Thread
MyThread = New System.Threading.Thread(AddressOf LaunchAccountsForm)
Call MyThread.Start()
Thanks,
Adam
I'm launching a form in a new thread as follows below. The problem is the
form exits straight away.
How do I cause it to stay open until the form is closed?
The suspend won't work since I need to get UI events from the form controls.
Dim MyThread As System.Threading.Thread
MyThread = New System.Threading.Thread(AddressOf LaunchAccountsForm)
Call MyThread.Start()
Thanks,
Adam