1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { busy frm; frm.Show(); Application::DoEvents(); System::Threading::Thread::Sleep(2000); MessageBox::Show("Finished"); } }; }