Ejemplo n.º 1
0
 public static void RemoveResultsDeficientWindow()
 {
     if (m_formResultsDeficient != null)
     {
         m_formResultsDeficient.Dispose();
         m_formResultsDeficient = null;
     }
 }
Ejemplo n.º 2
0
 public static bool IsResultsDeficientOpen(out FormResultsDeficient form)
 {
     if (m_formResultsDeficient != null)
     {
         m_formResultsDeficient.Focus();
         form = m_formResultsDeficient;
         return(true);
     }
     else
     {
         form = null;
         return(false);
     }
 }
Ejemplo n.º 3
0
 public static void AddResultsDeficientWindow(FormResultsDeficient form)
 {
     m_formResultsDeficient = form;
 }