Ejemplo n.º 1
0
 public static void RemoveResultsBudgetWindow()
 {
     if (m_formResultsBudget != null)
     {
         m_formResultsBudget.Dispose();
         m_formResultsBudget = null;
     }
 }
Ejemplo n.º 2
0
 public static bool IsResultsBudgetOpen(out FormResultsBudget form)
 {
     if (m_formResultsBudget != null)
     {
         m_formResultsBudget.Focus();
         form = m_formResultsBudget;
         return(true);
     }
     else
     {
         form = null;
         return(false);
     }
 }
Ejemplo n.º 3
0
 public static void AddResultsBudgetWindow(FormResultsBudget form)
 {
     m_formResultsBudget = form;
 }