ソリューションに2つのプロジェクトがあり、メインプロジェクトはプロジェクト1で、プロジェクト1のメインフォームロードイベント中にプロジェクト2のフォームを実行します。問題は、プロジェクト2のフォームが閉じた後にプロジェクト1のフォームを表示する方法です。 ?
//Here is the form from project 2 will run on project 1 mains form load
pp2.FormLoader frmLdr = new pp2.FormLoader();
frmLdr.MdiParent = this;
frmLdr.Show();
//the form from project 2 will automatically closes after a couple of seconds, after that this form should be automatically show. How can I possibly do this? Thanks!
FormProcess frmSvrProc = new FormProcess();
frmSvrProc.MdiParent = this;
frmSvrProc.Show();