コード例 #1
0
ファイル: FRM_Main.cs プロジェクト: Kmiiloberrio2/fwk_12
        void Load_FRM_Document(Fwk.Logging.Targets.Target t)
        {
            FRM_Document wForm;

            try
            {
                wForm = new FRM_Document();
                wForm.Populate(t);
                wForm.MdiParent = this;
                wForm.Show();
            }
            catch (InvalidOperationException)
            { }
            catch (Exception ex)
            {
                this.ExceptionViewer.Show(ex);
            }
        }
コード例 #2
0
ファイル: FRM_Main.cs プロジェクト: Pelsoft/fwk_10.3
 void Load_FRM_Document(Fwk.Logging.Targets.Target t)
 {
     FRM_Document wForm ;
     try
     {
         wForm = new FRM_Document();
         wForm.Populate(t);
         wForm.MdiParent = this;
         wForm.Show();
     }
     catch (InvalidOperationException)
     { }
     catch (Exception ex)
     {
         this.ExceptionViewer.Show(ex);
     }
 }