Majid Kamali

Majid Kamali

  • NA
  • 315
  • 212.7k

other way for hiding form

Jun 9 2011 2:11 PM
Hi.
in main form, Hide method does not work, but when I use code snippet below for hiding my form, it work.
What's the difference?

BeginInvoke
(new MethodInvoker(delegate
        {
           
Hide();
       
} ) );
Why Hide does not work but this method works?
Thanks

Answers (4)