Exemple #1
0
 static public void ShowIt()
 {
     if (s_frm == null)
     {
         s_frm       = new OutputForm();
         s_frm.Owner = DocManager.GetFrameParent();
     }
     s_frm.Show();
     s_frm.BringToFront();
 }
Exemple #2
0
 /// <summary>
 /// Clean up any resources being used.
 /// </summary>
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (components != null)
         {
             components.Dispose();
         }
     }
     s_frm = null;
     base.Dispose(disposing);
 }
 /// <summary>
 /// Clean up any resources being used.
 /// </summary>
 protected override void Dispose( bool disposing )
 {
     if( disposing )
     {
         if(components != null)
         {
             components.Dispose();
         }
     }
     s_frm = null;
     base.Dispose( disposing );
 }
 public static void ShowIt()
 {
     if (s_frm == null) {
         s_frm = new OutputForm();
         s_frm.Owner = DocManager.GetFrameParent();
     }
     s_frm.Show();
     s_frm.BringToFront();
 }