.NET FAQs Unleashed!
 
    
    

What is the difference between the .Show() method and the .ShowDialog() method of the UserMessageDialog object?

When the .Show() method is used, the user can navigate between the dialog window and the main form behind the dialog window. On the other hand, the ShowDialog()  method works in modal mode, which means the dialog window has to be closed before the user can navigate to the main form behind the dialog window.



More Interview Questions...