i have the code below:
VB Code:
  1. Private Sub ShowWaitNotice()
  2.  
  3.         Dim WaitNotice As New WaitNotice
  4.         WaitNotice.ShowDialog()
  5.  
  6.     End Sub
  7.  
  8.     Private Sub WizardFilterBuilder1_Search_Click() _
  9.         Handles WizardFilterBuilder1.Search_Click
  10.  
  11.         Dim waitThread As New Threading.Thread(AddressOf ShowWaitNotice)
  12.         waitThread.Start()
  13.  
  14.         'stuff to do here
  15.  
  16.         waitThread.Abort()
  17.  
  18.     End Sub
after the thread aborts, the 'please wait' form is still there. it will go away if the mouse runs over it. How do you make it die with the thread?