Hi

Right I have two forms appear when a certain action is performed, one form is purley for visual effects and another displaying an error message. Once the error message form is closed, I would also like to close the other form, however it will not close, I have tried

vb Code:
  1. My.Forms.GreyOut.Focus()
  2.         My.Forms.GreyOut.Close()
  3.  
  4.         Me.Close()

vb Code:
  1. GreyOut.Close()
  2.         Me.Close()

But so far, I havent been able to close it