Example #1
0
 public static void RemoveResultsBudgetWindow()
 {
     if (m_formResultsBudget != null)
     {
         m_formResultsBudget.Dispose();
         m_formResultsBudget = null;
     }
 }
Example #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);
     }
 }
Example #3
0
 public static void AddResultsBudgetWindow(FormResultsBudget form)
 {
     m_formResultsBudget = form;
 }